Skip to content

Commit

Permalink
Merge pull request #13 from asnunes/v1.1.1-release
Browse files Browse the repository at this point in the history
V1.1.1 release
  • Loading branch information
asnunes authored Jul 3, 2021
2 parents 0d8a94c + 2faa0f2 commit 7da898d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish
on:
push:
branches: [master]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: Dependencies installation
run: npm install
- name: Test run
run: npm test
- name: Build
run: npm run build
- name: Publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
access: public
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "notion-page-to-html",
"version": "1.1.0",
"version": "1.1.1",
"description": "It converts public notion pages to html from url",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 7da898d

Please sign in to comment.