Skip to content

Commit

Permalink
pray
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer committed May 13, 2024
1 parent 3875ca1 commit b0d5e86
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backend-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/backend
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
BUILD_ARM: ${{ github.event.inputs.build_arm || inputs.build_arm || github.ref == 'refs/heads/main' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-backend
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
type=raw,value=${{ env.DIR_HASH }}
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=ref,event=branch
type=raw,prefix=commit-${{ env.sha }}
type=raw,value=commit-${{ env.sha }}
type=raw,value=${{ env.BRANCH_NAME }}-arm,enable=${{ env.BUILD_ARM }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/config-preprocessor-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/config-processor
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
BUILD_ARM: ${{ github.event.inputs.build_arm || inputs.build_arm || github.ref == 'refs/heads/main' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

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

env:
ALL_BROWSERS: ${{ github.ref == 'refs/heads/main' || github.event.inputs.all_browsers && 'true' || 'false' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

steps:
- name: Collect Workflow Telemetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ingest-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/ingest
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
BUILD_ARM: ${{ github.event.inputs.build_arm || inputs.build_arm || github.ref == 'refs/heads/main' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

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-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/keycloakify
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
BUILD_ARM: ${{ github.event.inputs.build_arm || inputs.build_arm || github.ref == 'refs/heads/main' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

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-dummy-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/preprocessing-dummy
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
BUILD_ARM: ${{ github.event.inputs.build_arm || inputs.build_arm || github.ref == 'refs/heads/main' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

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/preprocessing-nextclade-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/preprocessing-nextclade
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
BUILD_ARM: ${{ github.event.inputs.build_arm || inputs.build_arm || github.ref == 'refs/heads/main' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

concurrency:
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-preprocessing-nextclade-${{github.event.inputs.build_arm}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website-image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: website
name: website-image

on:
pull_request:
Expand All @@ -23,7 +23,7 @@ env:
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/website
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
BUILD_ARM: ${{ github.event.inputs.build_arm || inputs.build_arm || github.ref == 'refs/heads/main' }}
sha: ${{ github.event.pull_request.base.sha || github.sha }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}

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 b0d5e86

Please sign in to comment.