Skip to content

Commit 69e53bd

Browse files
committed
ci: integrate release-please
1 parent 1ac09d4 commit 69e53bd

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/release-please.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
outputs:
16+
release_created: ${{ steps.release.outputs.release_created }}
17+
steps:
18+
- uses: actions/[email protected]
19+
id: app-token
20+
with:
21+
app-id: ${{ secrets.DS_RELEASE_BOT_ID }}
22+
private-key: ${{ secrets.DS_RELEASE_BOT_PRIVATE_KEY }}
23+
24+
- uses: googleapis/release-please-action@v4
25+
id: release
26+
with:
27+
release-type: python
28+
token: ${{ steps.app-token.outputs.token }}

0 commit comments

Comments
 (0)