Skip to content

Commit

Permalink
Bump docker action version
Browse files Browse the repository at this point in the history
  • Loading branch information
gberche-orange committed Nov 4, 2024
1 parent cd9ce35 commit 632af8b
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/docker-publish-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,33 @@ jobs:

steps:
- name: Checkout and download repository to workflow runner
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Set up docker buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to github container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}


- name: Build and push image to github container registry
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
file: Containerfile
push: true
platforms: "linux/amd64"
build-args: |
VERSION=${{github.ref_name}}
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{github.ref_name}}"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 632af8b

Please sign in to comment.