File tree 3 files changed +32
-1
lines changed
3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ workflow_dispatch : {}
5
+ release :
6
+ types : [published]
7
+
8
+ jobs :
9
+ publish :
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ contents : read
13
+ packages : write
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - uses : actions/setup-node@v4
17
+ with :
18
+ node-version : 20
19
+ registry-url : ' https://registry.npmjs.org'
20
+ cache : ' yarn'
21
+ - run : yarn --frozen-lockfile
22
+ - run : npm publish
23
+ env :
24
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 28
28
"files" : [
29
29
" data/**/*.csv" ,
30
30
" data/**/*.json"
31
- ]
31
+ ],
32
+ "publishConfig" : {
33
+ "access" : " public"
34
+ }
32
35
}
Original file line number Diff line number Diff line change
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+
4
+
You can’t perform that action at this time.
0 commit comments