feat: set up release-please github action (#12) (#13) #1
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
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 }}" |