Update PHP 8.4 build workflow to fix environment variable usage and enable pull during build
All checks were successful
Build and Push Chill base image / build-and-push (push) Successful in 4m2s

This commit is contained in:
Julien Fastré 2025-06-05 10:56:16 +02:00
parent f6ba5ee207
commit 02cf5dbe45
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -31,9 +31,9 @@ jobs:
uses: https://github.com/docker/metadata-action@v5 uses: https://github.com/docker/metadata-action@v5
with: with:
images: | images: |
${{ IMAGE_NAME }} ${{ env.IMAGE_NAME }}
flavor: | flavor: |
prefix=${{ env.IMAGE_FLAVOR }} prefix=${{ env.IMAGE_FLAVOR }}-
tags: | tags: |
type=schedule type=schedule
type=edge type=edge
@ -50,6 +50,7 @@ jobs:
with: with:
context: "{{ defaultContext }}:${{ env.CONTEXT }}" context: "{{ defaultContext }}:${{ env.CONTEXT }}"
file: Dockerfile file: Dockerfile
pull: true
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}