Skip to content

Commit

Permalink
Added automatic publish to npm new version
Browse files Browse the repository at this point in the history
  • Loading branch information
timocov committed Jun 30, 2020
1 parent 1930d3f commit c38f3e7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish new version

on:
push:
tags:
- v*

jobs:
publish:
name: Publish
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: bash ./prepare-release.sh
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}

0 comments on commit c38f3e7

Please sign in to comment.