Skip to content

feat: set up release-please github action (#12) (#13) #1

feat: set up release-please github action (#12) (#13)

feat: set up release-please github action (#12) (#13) #1

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 }}"