Skip to content

Commit

Permalink
Fix issue with an unexpected symbol in build GA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
victorpopkov committed Apr 24, 2024
1 parent 3bf40ec commit 5322a24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
with:
build-args: |
DS_KTOOLS_VERSION=${{ matrix.image.version }}
${{ format('IMAGEMAGICK_IMAGE_PREFIX={0}', ${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}) }}
IMAGEMAGICK_IMAGE_PREFIX=${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}
IMAGEMAGICK_VERSION=${{ matrix.image.imagemagick_version }}
cache-from: type=registry,ref=${{ env.DOCKERHUB_REPOSITORY }}:official-${{ matrix.image.version }}-imagemagick-${{ matrix.image.imagemagick_version }}-debian
cache-to: type=inline
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
with:
build-args: |
DS_KTOOLS_VERSION=${{ matrix.image.version }}
${{ format('IMAGEMAGICK_IMAGE_PREFIX={0}', ${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}) }}
IMAGEMAGICK_IMAGE_PREFIX=${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}
IMAGEMAGICK_VERSION=${{ matrix.image.imagemagick_version }}
cache-from: type=registry,ref=${{ env.DOCKERHUB_REPOSITORY }}:official-${{ matrix.image.version }}-imagemagick-${{ matrix.image.imagemagick_version }}-alpine
cache-to: type=inline
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
with:
build-args: |
DS_KTOOLS_VERSION=${{ matrix.image.version }}
${{ format('IMAGEMAGICK_IMAGE_PREFIX={0}', ${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}) }}
IMAGEMAGICK_IMAGE_PREFIX=${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}
IMAGEMAGICK_VERSION=${{ matrix.image.imagemagick_version }}
cache-from: type=registry,ref=${{ env.DOCKERHUB_REPOSITORY }}:${{ matrix.image.version }}-imagemagick-${{ matrix.image.imagemagick_version }}-debian
cache-to: type=inline
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
with:
build-args: |
DS_KTOOLS_VERSION=${{ matrix.image.version }}
${{ format('IMAGEMAGICK_IMAGE_PREFIX={0}', ${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}) }}
IMAGEMAGICK_IMAGE_PREFIX=${{ matrix.image.imagemagick_legacy && 'legacy-' || '' }}
IMAGEMAGICK_VERSION=${{ matrix.image.imagemagick_version }}
cache-from: type=registry,ref=${{ env.DOCKERHUB_REPOSITORY }}:${{ matrix.image.version }}-imagemagick-${{ matrix.image.imagemagick_version }}-alpine
cache-to: type=inline
Expand Down

0 comments on commit 5322a24

Please sign in to comment.