File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change 5
5
types : [created]
6
6
7
7
jobs :
8
- example_matrix :
9
- strategy :
10
- matrix :
11
- os : [ubuntu-latest]
12
- version : [16]
13
- runs-on : ${{ matrix.os }}
14
-
15
8
build :
16
- runs-on : ${{ matrix.os }}
9
+ runs-on : ubuntu-latest
17
10
steps :
18
11
- uses : actions/checkout@v3
19
12
- uses : actions/setup-node@v3
20
13
with :
21
- node-version : ${{ matrix.version }}
14
+ node-version : 16
22
15
23
16
publish-npm :
24
17
needs : build
25
- runs-on : ${{ matrix.os }}
18
+ runs-on : ubuntu-latest
26
19
steps :
27
20
- uses : actions/checkout@v3
28
21
- uses : actions/setup-node@v3
29
22
with :
30
- node-version : ${{ matrix.version }}
23
+ node-version : 16
31
24
registry-url : https://registry.npmjs.org/
32
25
scope : " @smakss"
33
26
- run : npm publish
@@ -36,12 +29,12 @@ jobs:
36
29
37
30
publish-gpr :
38
31
needs : build
39
- runs-on : ${{ matrix.os }}
32
+ runs-on : ubuntu-latest
40
33
steps :
41
34
- uses : actions/checkout@v3
42
35
- uses : actions/setup-node@v3
43
36
with :
44
- node-version : ${{ matrix.version }}
37
+ node-version : 16
45
38
registry-url : https://npm.pkg.github.com/
46
39
scope : " @smakss"
47
40
- run : npm publish
You can’t perform that action at this time.
0 commit comments