Skip to content

Commit

Permalink
Fix dockerfile path
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonbaeten committed Apr 26, 2024
1 parent bd9e77d commit 9a931f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
uses: "tweedegolf/actions-container-helpers/.github/workflows/container-image.yml@main"
with:
context: "${{ inputs.php_version }}"
file: "${{ inputs.php_version }}/Dockerfile"
push: ${{ github.ref == 'refs/heads/main' }}
platforms: "linux/amd64,linux/arm64"
build-args: |
Expand All @@ -34,7 +35,7 @@ jobs:
uses: "tweedegolf/actions-container-helpers/.github/workflows/container-image.yml@main"
with:
context: "${{ inputs.php_version }}"
file: Dockerfile.dev
file: "${{ inputs.php_version }}/Dockerfile.dev"
push: ${{ github.ref == 'refs/heads/main' }}
platforms: "linux/amd64,linux/arm64"
tags: |
Expand All @@ -46,7 +47,7 @@ jobs:
uses: "tweedegolf/actions-container-helpers/.github/workflows/container-image.yml@main"
with:
context: "${{ inputs.php_version }}"
file: Dockerfile.debug
file: "${{ inputs.php_version }}/Dockerfile.debug"
push: ${{ github.ref == 'refs/heads/main' }}
platforms: "linux/amd64,linux/arm64"
tags: |
Expand Down

0 comments on commit 9a931f6

Please sign in to comment.