Release LAPIS #136
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: Release LAPIS | |
on: | |
workflow_run: | |
workflows: [LAPIS] | |
types: [completed] | |
branches: [main] | |
env: | |
LAPIS_DOCKER_IMAGE_NAME: ghcr.io/genspectrum/lapis | |
DOCS_DOCKER_IMAGE_NAME: ghcr.io/genspectrum/lapis-docs | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
packages: write | |
checks: read | |
if: ${{ github.event.workflow_run.conclusion == 'success' && github.repository == 'GenSpectrum/LAPIS' }} | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
path: . | |
config-file: release-please-config.json | |
manifest-file: .release-please-manifest.json | |
include-component-in-tag: true | |
target-branch: main | |
- name: Inspect Release Outputs | |
run: | | |
cat <<'EOF' | |
${{ toJson(steps.release.outputs) }} | |
EOF | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.release_created }} | |
- name: Set up Docker Buildx | |
if: ${{ steps.release.outputs.release_created }} | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
if: ${{ steps.release.outputs.release_created }} | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Wait for Lapis Docs Docker Image | |
if: ${{ steps.release.outputs.release_created }} | |
uses: lewagon/wait-on-check-action@v1.3.4 | |
with: | |
ref: ${{ github.sha }} | |
check-name: Build Docs Docker Image And Run E2E Tests | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Tag Already Built Images With Release Tags | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
MAJOR=${{ steps.release.outputs.major }} | |
MINOR=${{ steps.release.outputs.minor }} | |
PATCH=${{ steps.release.outputs.patch }} | |
TAGS=("$MAJOR.$MINOR" "$MAJOR.$MINOR.$PATCH") | |
# TODO (#777) include $MAJOR only for releases >= 1.0 | |
# TAGS=("$MAJOR" "$MAJOR.$MINOR" "$MAJOR.$MINOR.$PATCH") - don't include major-only for pre-1.0 | |
IMAGES=("${{ env.LAPIS_DOCKER_IMAGE_NAME }}" "${{ env.DOCS_DOCKER_IMAGE_NAME }}") | |
for IMAGE in "${IMAGES[@]}"; do | |
for TAG in "${TAGS[@]}"; do | |
docker buildx imagetools create --tag $IMAGE:$TAG $IMAGE:latest | |
done | |
done |