You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thumbsup/.github/workflows/publish-package.yml

24 lines
498 B
YAML

name: Publish NPM package
# This workflow runs every time a version tag is pushed
on:
push:
tags:
- 'v*'
jobs:
# Publish the npm package
publish:
name: Publish package
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 publish --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}