File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 7
7
release-please :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : GoogleCloudPlatform/release-please-action@v2
10
+ - uses : GoogleCloudPlatform/release-please-action@v3
11
11
id : release
12
12
with :
13
13
token : ${{ secrets.GITHUB_TOKEN }}
14
14
release-type : node
15
- package-name : test-release-please
16
- # The logic below handles the npm publication:
17
15
- uses : actions/checkout@v2
18
- # these if statements ensure that a publication only occurs when
19
- # a new release is created:
20
16
if : ${{ steps.release.outputs.release_created }}
21
17
- uses : actions/setup-node@v1
22
18
with :
23
19
node-version : 14
24
20
registry-url : ' https://registry.npmjs.org'
25
21
if : ${{ steps.release.outputs.release_created }}
26
- # if you are using Yarn, substitute the command below with `yarn install --frozen-lockfile`
27
22
- run : npm ci
28
23
if : ${{ steps.release.outputs.release_created }}
29
24
- run : npm publish
30
25
env :
31
26
NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
32
- if : ${{ steps.release.outputs.release_created }}
27
+ if : ${{ steps.release.outputs.release_created }}
You can’t perform that action at this time.
0 commit comments