Skip to content

Commit

Permalink
devops: fixed the auto-push-docker workflow, correct docker hub
Browse files Browse the repository at this point in the history
  • Loading branch information
cdxker committed Oct 3, 2023
1 parent cc98ec8 commit 3d8f50d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
uses: actions/checkout@v4

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

- name: Build and push Docker image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
uses: docker/build-push-action@v5
with:
context: search/
file: ./Dockerfile
push: true
tags: ${{ vars.GITHUB_SHA }}
tags: arguflow/vault-search:latest
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 3d8f50d

Please sign in to comment.