chore(main): release 0.1.25 (#115) #204
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
name: release-please | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate app token for release-please | |
uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
# https://github.com/apps/potatobot-prime | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- uses: googleapis/release-please-action@v4 | |
with: | |
# use app token so that PRs and releases created by release-please trigger | |
# additional workflows. They'll also be authored by the app. | |
# see https://github.com/googleapis/release-please-action#github-credentials | |
token: ${{ steps.app-token.outputs.token }} |