Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Dusan Malusev <[email protected]>
  • Loading branch information
CodeLieutenant committed Jun 10, 2024
1 parent 58fa959 commit edd1c8c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,36 +45,36 @@ jobs:
- name: Build and push API
id: docker_build_zts
uses: docker/build-push-action@v4
if: ${{ github.event.inputs.zts == 'yes' }}
if: ${{ inputs.zts == 'yes' }}
with:
file: Dockerfile
context: .
push: true
pull: true
platforms: linux/amd64
target: base
tags: malusevd99/scylladb-php-driver:php-${{ github.event.inputs.php }}-zts
tags: malusevd99/scylladb-php-driver:php-${{ inputs.php }}-zts
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
PHP_VERSION=${{ github.event.inputs.php }}
PHP_ZTS=${{ github.event.inputs.zts }}
PHP_VERSION=${{ inputs.php }}
PHP_ZTS=${{ inputs.zts }}
PHP_DEBUG="yes"
- name: Build and push API
id: docker_build_nts
uses: docker/build-push-action@v4
if: ${{ github.event.inputs.zts == 'no' }}
if: ${{ inputs.zts == 'no' }}
with:
file: Dockerfile
context: .
push: true
pull: true
platforms: linux/amd64
target: base
tags: malusevd99/scylladb-php-driver:php-${{ github.event.inputs.php }}
tags: malusevd99/scylladb-php-driver:php-${{ inputs.php }}
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
PHP_VERSION=${{ github.event.inputs.php }}
PHP_ZTS=${{ github.event.inputs.zts }}
PHP_VERSION=${{ inputs.php }}
PHP_ZTS=${{ inputs.zts }}
PHP_DEBUG="yes"

0 comments on commit edd1c8c

Please sign in to comment.