Skip to content

Commit

Permalink
Merge pull request #60 from github/jfuchs-publish-updates
Browse files Browse the repository at this point in the history
Update publish.yml
  • Loading branch information
jfuchs authored Jul 20, 2022
2 parents be131e8 + b2db0a2 commit e4390ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
name: Publish

on:
release:
types: [created]

jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Checkout the project
uses: actions/checkout@v3
- name: Use Node.js 16.x (LTS)
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16.x
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
- run: npm test
- run: npm version ${TAG_NAME} --git-tag-version=false
env:
TAG_NAME: ${{ github.event.release.tag_name }}
- run: npm whoami; npm --ignore-scripts publish
- run: npm whoami; npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit e4390ae

Please sign in to comment.