Skip to content

fix shaka release

fix shaka release #3

Workflow file for this run

name: Release package
on:
push:
branches: ["production"]
tags: ["v*.*.*"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
registry-url: 'https://registry.npmjs.org'
- run: npm install --no-save --no-cache
# - run: npm run build
# - run: npm run test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}