Skip to content

Commit

Permalink
attempted fix to github workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
Wes Shaddix committed Nov 21, 2024
1 parent 89bb464 commit 458d629
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
- uses: docker/login-action@v3
- with:
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
- uses: docker/build-push-action@v6
- with:
uses: docker/build-push-action@v6
with:
push: true
tags: wshaddix/http-nats-proxy:${{github.ref_name}}
tags: wshaddix/http-nats-proxy:${{ github.ref_name }}

0 comments on commit 458d629

Please sign in to comment.