Skip to content

v0.0.4 pre

v0.0.4 pre #14

Workflow file for this run

name: 'Release a new version to Github Packages'
on:
release:
types: [published]
env:
REGISTRY: ghcr.io
jobs:
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 ghcr
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push base image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/renci-ner/bagel:${{ steps.get_version.outputs.VERSION }}
labels: ${{ steps.meta_base_image.outputs.labels }}