Skip to content

fix: bump rfl to support new annonars ClinVar XML format (#719) (#720) #307

fix: bump rfl to support new annonars ClinVar XML format (#719) (#720)

fix: bump rfl to support new annonars ClinVar XML format (#719) (#720) #307

name: Release
on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
release_name: ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}
steps:
- name: Create GitHub release
id: release
uses: GoogleCloudPlatform/release-please-action@v4
with:
token: ${{ secrets.BOT_TOKEN }}
Container-Release:
needs: release-please
runs-on: ubuntu-latest
if: ${{ needs.release-please.outputs.release_created }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: 'true'
submodules: recursive
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=semver,pattern={{version}},value=${{ needs.release-please.outputs.release_name }}
type=semver,pattern={{major}}.{{minor}},value=${{ needs.release-please.outputs.release_name }}
type=semver,pattern={{major}},value=${{ needs.release-please.outputs.release_name }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: utils/docker/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true