Skip to content

Release a new version to Github Packages #56

Release a new version to Github Packages

Release a new version to Github Packages #56

Workflow file for this run

name: 'Release a new version to Github Packages'
on:
release:
types: [published]
jobs:
validate-tool:
uses: ARPA-H-BDF/bdfkb-schema/.github/workflows/ci-validate.yaml@main
with:
python-version: '3.12'
push_to_registry:
name: Push Docker image to GitHub Packages tagged with "latest" and version number.
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Login to Container Registry
uses: docker/login-action@v3
with:
registry: containers.renci.org
username: ${{ secrets.CONTAINERHUB_USERNAME }}
password: ${{ secrets.CONTAINERHUB_TOKEN }}
logout: true
- name: Build and push base image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: containers.renci.org/helxplatform/koios:${{ steps.get_version.outputs.VERSION }}
labels: ${{ steps.meta_base_image.outputs.labels }}