Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
m1guelpf authored Nov 18, 2019
1 parent 7490a74 commit 6b3ca6c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/npmpublish.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish to NPM

on:
release:
types: [created]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit 6b3ca6c

Please sign in to comment.