Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}"
Loading