Skip to content

Commit

Permalink
Update GitHub Action Versions (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
beeman and github-actions[bot] authored Dec 1, 2024
1 parent a4697f2 commit 07f2b0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ jobs:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker (dev)
uses: docker/build-push-action@v6.9.0
uses: docker/build-push-action@v6.10.0
if: github.ref == 'refs/heads/dev'
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:dev
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push Docker (main)
uses: docker/build-push-action@v6.9.0
uses: docker/build-push-action@v6.10.0
if: github.ref == 'refs/heads/main'
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push Docker (Manual)
uses: docker/build-push-action@v6.9.0
uses: docker/build-push-action@v6.10.0
if: github.event_name == 'workflow_dispatch'
with:
context: .
Expand Down

0 comments on commit 07f2b0b

Please sign in to comment.