Skip to content

Commit

Permalink
Added GitHub Actions publish workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
neogeek committed Aug 4, 2022
1 parent e69f8f1 commit b97df5a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/publish.workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Publish

on:
push:
tags:
- 'v*.*.*'

jobs:
publish:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'

- name: Update NPM to latest
run: npm install npm@latest -g

- name: Print Node.js and NPM version
run: |
node -v
npm -v
- name: NPM whoami
run: npm whoami
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

- name: Publish package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

0 comments on commit b97df5a

Please sign in to comment.