Skip to content

Commit

Permalink
Update docker-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricve committed Aug 10, 2024
1 parent 1a670ca commit 9710979
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
- name: Build and push Docker image with latest tag
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: uugai/data-filter:latest
- name: Build and push Docker image with release tag
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: uugai/data-filter:${{ github.ref_name }}

0 comments on commit 9710979

Please sign in to comment.