Skip to content

Commit

Permalink
change login action version
Browse files Browse the repository at this point in the history
  • Loading branch information
kielbasa-elp committed Aug 13, 2024
1 parent 07d637d commit 309da93
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/web-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,13 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Ensure Secrets Are Set
run: |
if [ -z "${{ secrets.DOCKERHUB_USERNAME }}" ]; then
echo "Error: DOCKERHUB_USERNAME is not set!"
exit 1
fi
if [ -z "${{ secrets.DOCKERHUB_TOKEN }}" ]; then
echo "Error: DOCKERHUB_TOKEN is not set!"
exit 1
fi
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3.3.0
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- uses: docker/build-push-action@v6
with:
context: .
Expand Down

0 comments on commit 309da93

Please sign in to comment.