Skip to content

Commit

Permalink
chore(ci): fix path of image build actions (#1879)
Browse files Browse the repository at this point in the history
* chore(ci): fix path of image build actions

* Fix bug in website-image action
  • Loading branch information
corneliusroemer authored May 12, 2024
1 parent 30e7379 commit 5208de1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-arm-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,36 +10,36 @@ permissions:

jobs:
trigger-backend:
uses: ./.github/workflows/backend.yml
uses: ./.github/workflows/backend-image.yml
with:
build_arm: true

trigger-config-preprocessor:
uses: ./.github/workflows/config-preprocessor-build.yml
uses: ./.github/workflows/config-preprocessor-image.yml
with:
build_arm: true

trigger-dummy-preprocessing:
uses: ./.github/workflows/dummyPreprocessing.yml
uses: ./.github/workflows/preprocessing-dummy-image.yml
with:
build_arm: true

trigger-ingest:
uses: ./.github/workflows/ingest.yml
uses: ./.github/workflows/ingest-image.yml
with:
build_arm: true

trigger-keycloakify:
uses: ./.github/workflows/keycloakify-build.yml
uses: ./.github/workflows/keycloakify-image.yml
with:
build_arm: true

trigger-preprocessing-nextclade:
uses: ./.github/workflows/preprocessing-nextclade.yml
uses: ./.github/workflows/preprocessing-nextclade-image.yml
with:
build_arm: true

trigger-website:
uses: ./.github/workflows/website.yml
uses: ./.github/workflows/website-image.yml
with:
build_arm: true
2 changes: 1 addition & 1 deletion .github/workflows/website-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
tags: ${{ steps.dockerMetadata.outputs.tags }}
cache-from: type=gha,scope=website-${{ github.ref }}
cache-to: type=gha,mode=max,scope=website-${{ github.ref }}
platforms: ${{ env.BUILD_ARM == 'true' == 'true' && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
platforms: ${{ env.BUILD_ARM == 'true' && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
build-args: NODE_VERSION=${{ env.NODE_VERSION }}

- name: Retag and push existing image if cache hit
Expand Down

0 comments on commit 5208de1

Please sign in to comment.