Skip to content

fix: prevent manifest update after another commit (#313) #348

fix: prevent manifest update after another commit (#313)

fix: prevent manifest update after another commit (#313) #348

Workflow file for this run

on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: [self-hosted, ARM64]
steps:
# See https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow
# For why we need to generate a token and not use the default
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.CZI_RELEASE_PLEASE_APP_ID }}
private_key: ${{ secrets.CZI_RELEASE_PLEASE_PK }}
- name: release please
uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ steps.generate_token.outputs.token }}