Skip to content

feat: move final sc2-open output to 00_archive and print progress logs #15

feat: move final sc2-open output to 00_archive and print progress logs

feat: move final sc2-open output to 00_archive and print progress logs #15

Workflow file for this run

name: Docker
on:
push:
env:
DOCKER_IMAGE_NAME: ghcr.io/genspectrum/ingest
jobs:
docker:
runs-on: ubuntu-latest
permissions:
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=sha,prefix=commit-
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
- name: Build and push image
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.dockerMetadata.outputs.tags }}