diff options
| author | Paul-Christian Volkmer | 2025-11-28 12:27:19 +0100 |
|---|---|---|
| committer | GitHub | 2025-11-28 12:27:19 +0100 |
| commit | afecf5534ab031f294274116a6297fbed10017b9 (patch) | |
| tree | be3357c0ab299fe1a6454b148e7cf569a3ab33ea /.github/workflows/release.yml | |
| parent | df670aef05b36fed0c1ffe601894205d6001f486 (diff) | |
build: update ci (#201)
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..c89694b --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,27 @@ +name: release-please + +on: + push: + branches: [ 'master' ] + +permissions: + contents: read + +jobs: + release-please: + name: run release-please + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - uses: actions/create-github-app-token@v2 + id: app-token + with: + app-id: ${{ secrets.RELEASE_APP_ID }} + private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} + owner: ${{ github.repository_owner }} + + - uses: googleapis/release-please-action@v4 + with: + token: ${{ steps.app-token.outputs.token }} |
