We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 058fea6 commit 79945b9Copy full SHA for 79945b9
.github/workflows/build-and-push-images.yml
@@ -26,15 +26,16 @@ jobs:
26
uses: docker/setup-buildx-action@v1
27
28
- name: Log in to DockerHub
29
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
30
with:
31
- username: ${{ secrets.DOCKERHUB_USERNAME }}
32
- password: ${{ secrets.DOCKERHUB_TOKEN }}
+ username: ${{ secrets.DOCKER_USERNAME }}
+ password: ${{ secrets.DOCKER_PASSWORD }}
33
34
- name: Build and push Docker image
35
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v6
36
37
context: .
38
+ file: ./Dockerfile
39
push: true
40
tags: masa-finance/postgres-backup-s3:${{ matrix.postgres }}
41
build-args: |
0 commit comments