File tree 4 files changed +245
-51
lines changed
4 files changed +245
-51
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,10 @@ jobs:
18
18
strategy :
19
19
matrix :
20
20
node :
21
- - 14.18.0
22
- - 16.0.0
23
- - 16
21
+ - 16.14.0
22
+ - 18.0.0
24
23
- 18
25
- - 19
24
+ - 20
26
25
steps :
27
26
- uses : actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
28
27
- name : Setup node
@@ -44,21 +43,17 @@ jobs:
44
43
- run : npm clean-install
45
44
- run : npm test
46
45
- uses : codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3
47
- trigger-release :
48
- runs-on : ubuntu-latest
49
- if : github.event_name == 'push'
46
+ release :
50
47
needs :
51
48
- verify
52
49
- verify-matrix
53
- steps :
54
-
55
- with :
56
- route : >-
57
- POST
58
- /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
59
- owner : form8ion
60
- repo : prettier
61
- ref : ${{ github.ref }}
62
- workflow_id : release.yml
63
- env :
64
- GITHUB_TOKEN : ${{ secrets.GH_PAT }}
50
+ permissions :
51
+ contents : write
52
+ id-token : write
53
+ issues : write
54
+ pull-requests : write
55
+ uses : form8ion/.github/.github/workflows/release-package.yml@master
56
+ secrets :
57
+ NPM_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
58
+ permissions :
59
+ contents : read
Original file line number Diff line number Diff line change @@ -3,23 +3,15 @@ name: Release
3
3
push :
4
4
branches :
5
5
- alpha
6
- workflow_dispatch : {}
7
- env :
8
- FORCE_COLOR : 1
9
- NPM_CONFIG_COLOR : always
6
+ permissions :
7
+ contents : read
10
8
jobs :
11
9
release :
12
- runs-on : ubuntu-latest
13
- steps :
14
- - uses : actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
15
- - name : Setup node
16
- uses : actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
17
- with :
18
- node-version-file : .nvmrc
19
- cache : npm
20
- - run : npm clean-install
21
- - name : semantic-release
22
- run : npx semantic-release
23
- env :
24
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
- NPM_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
10
+ permissions :
11
+ contents : write
12
+ id-token : write
13
+ issues : write
14
+ pull-requests : write
15
+ uses : form8ion/.github/.github/workflows/release-package.yml@master
16
+ secrets :
17
+ NPM_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
You can’t perform that action at this time.
0 commit comments