diff options
| author | Paul-Christian Volkmer | 2025-11-27 20:38:00 +0100 |
|---|---|---|
| committer | GitHub | 2025-11-27 20:38:00 +0100 |
| commit | 3a03e384f55a735ab6a7c4e65997b9221b891251 (patch) | |
| tree | 0e6e68bb9ab01f1b9b47bd0a7379c5dd116da2ca /.github/workflows/release.yml | |
| parent | 4dd009133ae51f934187aefd750f3a7010bfef5c (diff) | |
build: update ci (#226)
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..d0d5596 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +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 }}
\ No newline at end of file |
