File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : release-please
3
+
4
+ on :
5
+ push :
6
+ # branches:
7
+ # - master
8
+
9
+ jobs :
10
+ release-please :
11
+ runs-on : ubuntu-latest
12
+ outputs :
13
+ paths_released : ${{ steps.release.outputs.paths_released }}
14
+ releases_info : ${{ toJSON(steps.release.outputs) }}
15
+ steps :
16
+ - uses : google-github-actions/release-please-action@v3
17
+ id : release
18
+ with :
19
+ release-type : go
20
+ # to trigger GitHub workflows, requires a PAT
21
+ # token: ${{ secrets.GITHUB_TOKEN }}
22
+ # changelog-notes-type: github
23
+ # prerelease: true
24
+ include-v-in-tag : true
25
+ # Only check the last 50 commits to avoid rate limiting
26
+ commit-search-depth : 50
27
+
28
+ - run : echo $JSON
29
+ name : Release Please Output Info
30
+ env :
31
+ JSON : ${{ toJSON(steps.release.outputs) }}
You can’t perform that action at this time.
0 commit comments