Skip to content

Commit d1108cf

Browse files
chore: add release please action
1 parent 09bffb0 commit d1108cf

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on:
2+
workflow_dispatch:
3+
push:
4+
branches:
5+
- main
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
name: Prepare release
12+
13+
jobs:
14+
release-please:
15+
strategy:
16+
matrix:
17+
os: [ubuntu-22.04]
18+
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: google-github-actions/release-please-action@v4
22+
with:
23+
token: ${{secrets.RELEASE_PLEASE_PAT}}
24+
# this is a built-in strategy in release-please, see "Action Inputs"
25+
# for more options
26+
release-type: node

0 commit comments

Comments
 (0)