Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/ProgNovel/webfunding
Browse files Browse the repository at this point in the history
  • Loading branch information
totorogendut committed Aug 3, 2021
2 parents e392844 + 2020cd9 commit 80885ba
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish to NPM
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 80885ba

Please sign in to comment.