Skip to content

Commit

Permalink
feat: set up release-please github action (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
stolpeo committed Feb 7, 2024
1 parent fa0c3d9 commit 272fe35
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
on:
push:
branches:
- main

name: release-please

jobs:
release:
runs-on: ubuntu-latest
steps:

- name: Create GitHub release
uses: GoogleCloudPlatform/release-please-action@v3
id: release
with:
release-type: python
package-name: cadd-rest-api
token: ${{ secrets.BOT_TOKEN }}

build-publish:
runs-on: ubuntu-latest
needs: release
steps:

- name: Checkout repository
uses: actions/checkout@v2
if: ${{ steps.release.outputs.release_created }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
if: ${{ steps.release.outputs.release_created }}
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker prerelease image
if: ${{ steps.release.outputs.release_created && github.event.release.prerelease }}
uses: docker/build-push-action@v3
with:
context: docker
push: true
# NB: no "latest" tag in contrast to true release
tags: "ghcr.io/varfish-org/cadd-rest-api:${{ needs.release.outputs.tag_name_no_v }}"

- name: Build and push Docker release image
if: ${{ steps.release.outputs.release_created && !github.event.release.prerelease }}
uses: docker/build-push-action@v3
with:
context: docker
push: true
tags: "ghcr.io/varfish-org/cadd-rest-api:latest,ghcr.io/varfish-org/cadd-rest-api:${{ needs.release.outputs.tag_name_no_v }}"

0 comments on commit 272fe35

Please sign in to comment.