We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289db50 commit 5f9ff53Copy full SHA for 5f9ff53
.github/workflows/main.yml
@@ -0,0 +1,25 @@
1
+name: Docker Build And Push
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "main"
7
8
+jobs:
9
+ docker:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Set up QEMU
13
+ uses: docker/setup-qemu-action@v1
14
+ - name: Set up Docker Buildx
15
+ uses: docker/setup-buildx-action@v1
16
+ - name: Login to DockerHub
17
+ uses: docker/login-action@v1
18
+ with:
19
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
20
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
21
+ - name: Build and push
22
+ uses: docker/build-push-action@v2
23
24
+ push: true
25
+ tags: devenes/boto3-api:${{github.run_number}}
0 commit comments