Skip to content

6.17.1

6.17.1 #80

Workflow file for this run

name: npm-publish
on:
push:
tags:
- v*
jobs:
npm-publish:
name: npm-publish
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Set up Node.js
uses: actions/setup-node@master
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Packages
run: npm ci
- name: Publish Npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: npm publish