File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 8
8
types : [created]
9
9
10
10
jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - uses : actions/setup-node@v2
16
+ with :
17
+ node-version : 16
18
+ - run : npm ci
19
+ - run : npm run build
20
+ - run : npm test
21
+
11
22
publish-npm :
23
+ needs : build
12
24
runs-on : ubuntu-latest
13
25
steps :
14
26
- uses : actions/checkout@v2
19
31
- run : npm ci
20
32
- run : npm publish
21
33
env :
22
- NODE_AUTH_TOKEN : ${{secrets.npm_token }}
34
+ NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN }}
23
35
24
36
publish-gpr :
37
+ needs : build
25
38
runs-on : ubuntu-latest
26
39
permissions :
27
40
contents : read
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mlg-converter" ,
3
- "version" : " 0.5.0 " ,
3
+ "version" : " 0.5.1 " ,
4
4
"license" : " MIT" ,
5
5
"description" : " MLG log files converter" ,
6
6
"author" : " Piotr Rogowski <piotr.rogowski0@gmail.com>" ,
You can’t perform that action at this time.
0 commit comments