Skip to content

Commit

Permalink
update actions (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedvaziry authored Dec 14, 2024
1 parent 1490f6b commit db81583
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and push Docker image
name: Docker Release

on:
release:
Expand All @@ -23,7 +23,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image
- name: Build and push to the release tag
run: |
docker buildx build . \
-f docker/Dockerfile \
Expand All @@ -33,7 +33,7 @@ jobs:
--no-cache \
--push
- name: Build and push latest tag
- name: Build and push to the latest tag
if: startsWith(github.event.release.target_commitish, '2.x')
run: |
docker buildx build . \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and push Docker image
name: Docker

on:
push:
Expand Down

0 comments on commit db81583

Please sign in to comment.