Update wait_for_pods_to_be_ready.py #2221
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: preprocessing-dummy | |
on: | |
push: | |
env: | |
DOCKER_IMAGE_NAME: ghcr.io/loculus-project/preprocessing-dummy | |
defaults: | |
run: | |
working-directory: ./preprocessing/dummy | |
concurrency: | |
group: ci-${{ github.ref }}-preprocessing-dummy | |
cancel-in-progress: true | |
jobs: | |
dockerImage: | |
name: Build preprocessing-dummy Docker Image | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker metadata | |
id: dockerMetadata | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.DOCKER_IMAGE_NAME }} | |
tags: | | |
type=ref,event=branch | |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }} | |
type=sha,prefix=commit- | |
- name: Build and push image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./preprocessing/dummy | |
push: true | |
tags: ${{ steps.dockerMetadata.outputs.tags }} | |
cache-from: type=gha,scope=dummy${{ github.ref }} | |
cache-to: type=gha,mode=max,scope=dummy-${{ github.ref }} |