Skip to content

Commit

Permalink
I hope
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer committed May 11, 2024
1 parent 6a59690 commit ce79ac5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/backend
BUILD_ARM: ${{ github.event.inputs.build_arm && 'true' || 'false' }}
BUILD_ARM: ${{ (github.event.inputs.build_arm || github.ref == 'refs/heads/main') && 'true' || 'false' }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-backend
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=ref,event=branch
type=sha,prefix=commit-
type=raw,value=${{ github.ref == 'refs/heads/main' && 'main' || github.ref }}-arm,enable=${{ env.BUILD_ARM == true || env.BUILD_ARM == 'true'}}
type=raw,value=${{ github.ref == 'refs/heads/main' && 'main' || github.ref }}-arm,enable=${{ env.BUILD_ARM }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/config-preprocessor-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/config-processor
BUILD_ARM: ${{ github.ref == 'refs/heads/main' || github.event.inputs.build_arm == 'true' || github.event.inputs.build_arm == true && 'true' || 'false' }}
BUILD_ARM: ${{ (github.event.inputs.build_arm || github.ref == 'refs/heads/main') && 'true' || 'false' }}

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dummyPreprocessing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/preprocessing-dummy
BUILD_ARM: ${{ github.ref == 'refs/heads/main' || github.event.inputs.build_arm == 'true' || github.event.inputs.build_arm == true && 'true' || 'false' }}
BUILD_ARM: ${{ (github.event.inputs.build_arm || github.ref == 'refs/heads/main') && 'true' || 'false' }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-preprocessing-dumm-${{github.event.inputs.build_arm}}y
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ingest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/ingest
BUILD_ARM: ${{ github.ref == 'refs/heads/main' || github.event.inputs.build_arm == 'true' || github.event.inputs.build_arm == true && 'true' || 'false' }}
BUILD_ARM: ${{ (github.event.inputs.build_arm || github.ref == 'refs/heads/main') && 'true' || 'false' }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-ingest-${{github.event.inputs.build_arm}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/keycloakify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
required: false
env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/keycloakify
BUILD_ARM: ${{ github.ref == 'refs/heads/main' || github.event.inputs.build_arm == 'true' || github.event.inputs.build_arm == true && 'true' || 'false' }}
BUILD_ARM: ${{ (github.event.inputs.build_arm || github.ref == 'refs/heads/main') && 'true' || 'false' }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-keycloak-buil-${{github.event.inputs.build_arm}}d
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preprocessing-nextclade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/preprocessing-nextclade
BUILD_ARM: ${{ github.ref == 'refs/heads/main' || github.event.inputs.build_arm == 'true' || github.event.inputs.build_arm == true && 'true' || 'false' }}
BUILD_ARM: ${{ (github.event.inputs.build_arm || github.ref == 'refs/heads/main') && 'true' || 'false' }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-preprocessing-nextclade-${{github.event.inputs.build_arm}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
required: false
env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/website
BUILD_ARM: ${{ github.ref == 'refs/heads/main' || github.event.inputs.build_arm == 'true' || github.event.inputs.build_arm == true && 'true' || 'false' }}
BUILD_ARM: ${{ (github.event.inputs.build_arm || github.ref == 'refs/heads/main') && 'true' || 'false' }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-website-${{github.event.inputs.build_arm}}
Expand Down

0 comments on commit ce79ac5

Please sign in to comment.