Skip to content

Commit 0bf76c0

Browse files
authored
ci(release-please): enable release-please (#11)
1 parent 92fe5c6 commit 0bf76c0

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+
name: release-please
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Get GITHUB_TOKEN for release
17+
uses: nabeken/go-github-apps@fc859a239d984b2704ccbe50f0ea4d9034e7cdaa # v0
18+
id: go-github-apps
19+
with:
20+
app_id: ${{ secrets.release_gh_app_id }}
21+
installation_id: ${{ secrets.release_gh_app_inst_id }}
22+
private_key: ${{ secrets.release_gh_app_priv_key }}
23+
24+
- uses: google-github-actions/release-please-action@ca6063f4ed81b55db15b8c42d1b6f7925866342d # v3
25+
with:
26+
release-type: go
27+
package-name: aws-go-dynamodb
28+
token: ${{ steps.go-github-apps.outputs.app_github_token }}

0 commit comments

Comments
 (0)