Skip to content

Commit 7da898d

Browse files
authored
Merge pull request #13 from asnunes/v1.1.1-release
V1.1.1 release
2 parents 0d8a94c + 2faa0f2 commit 7da898d

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/publish.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "notion-page-to-html",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "It converts public notion pages to html from url",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)