Skip to content

Commit

Permalink
Merge pull request #307 from netlogix/bugfix/build-arguments
Browse files Browse the repository at this point in the history
fix: Add missing build-args to new workflows
  • Loading branch information
tweis authored Jul 8, 2024
2 parents f059d2a + 109410f commit b3ea183
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
context: ./node
target: node
file: ./node/Dockerfile
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/node:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ jobs:
context: ./php
target: php-fpm
file: ./php/${{ matrix.image.file || 'Dockerfile' }}
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/php-fpm:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand All @@ -95,6 +96,7 @@ jobs:
context: ./php
target: php-cli
file: ./php/${{ matrix.image.file || 'Dockerfile' }}
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/php-cli:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand All @@ -108,6 +110,7 @@ jobs:
context: ./php
target: php-cron
file: ./php/${{ matrix.image.file || 'Dockerfile' }}
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/php-cron:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand All @@ -121,6 +124,7 @@ jobs:
context: ./php
target: php-supervisor
file: ./php/${{ matrix.image.file || 'Dockerfile' }}
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/php-supervisor:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand Down Expand Up @@ -188,6 +192,7 @@ jobs:
context: ./php
target: php-fpm-dev
file: ./php/${{ matrix.image.file || 'Dockerfile' }}
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/php-fpm-dev:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand All @@ -201,6 +206,7 @@ jobs:
context: ./php
target: php-cli-dev
file: ./php/${{ matrix.image.file || 'Dockerfile' }}
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/php-cli-dev:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand All @@ -214,6 +220,7 @@ jobs:
context: ./php
target: php-cron-dev
file: ./php/${{ matrix.image.file || 'Dockerfile' }}
build-args: ${{ matrix.image.build-args }}
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/netlogix/docker/php-cron-dev:${{ matrix.image.version }}
platforms: linux/amd64,linux/arm64
Expand Down

0 comments on commit b3ea183

Please sign in to comment.