Skip to content

Commit

Permalink
fix(php): fix libc docker image tag suffix (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
bduranleau-nr authored Oct 10, 2024
1 parent 0e689fa commit 1ec6463
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ jobs:
INITCONTAINER_LANGUAGE: php
ARCHITECTURE: linux/amd64,linux/arm64
DOCKER_IMAGE_NAME: newrelic/newrelic-php-init
DOCKER_IMAGE_TAG_SUFFIX: ${{ matrix.arch == 'gnu' && 'glibc' || 'musl' }}
DOCKER_IMAGE_TAG_IS_DEFAULT_SUFFIX: ${{ matrix.arch == 'gnu' }}
DOCKER_IMAGE_TAG_SUFFIX: ${{ matrix.libc == 'gnu' && 'glibc' || 'musl' }}
DOCKER_IMAGE_TAG_IS_DEFAULT_SUFFIX: ${{ matrix.libc == 'gnu' }}
BUILD_ARGS: LIBC=${{ matrix.libc }}

0 comments on commit 1ec6463

Please sign in to comment.