File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish
2
+ on :
3
+ push :
4
+ branches : [master]
5
+ workflow_dispatch :
6
+ jobs :
7
+ publish :
8
+ runs-on : ubuntu-20.04
9
+ strategy :
10
+ matrix :
11
+ node-version : [14.x]
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-node@v2
15
+ - name : Dependencies installation
16
+ run : npm install
17
+ - name : Test run
18
+ run : npm test
19
+ - name : Build
20
+ run : npm run build
21
+ - name : Publish
22
+ uses : JS-DevTools/npm-publish@v1
23
+ with :
24
+ token : ${{ secrets.NPM_TOKEN }}
25
+ access : public
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " notion-page-to-html" ,
3
- "version" : " 1.1.0 " ,
3
+ "version" : " 1.1.1 " ,
4
4
"description" : " It converts public notion pages to html from url" ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments