Skip to content

Commit ee43ce1

Browse files
committedMay 19, 2025·
feat: release please
1 parent fae3c84 commit ee43ce1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
 

‎.github/workflows/release-please.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
steps:
16+
- uses: actions/create-github-app-token@v1
17+
id: app-token
18+
with:
19+
app-id: ${{ vars.RP_APP_ID }}
20+
private-key: ${{ secrets.RP_APP_PRIVATE_KEY }}
21+
22+
- uses: googleapis/release-please-action@v4
23+
with:
24+
token: ${{ steps.app-token.outputs.token }}
25+
release-type: go

0 commit comments

Comments
 (0)
Please sign in to comment.