Choices/.github/workflows/deployment.yml

25 lines
514 B
YAML
Raw Normal View History

name: Publish to npm
on:
release:
types: [published]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
2021-12-31 02:16:52 +01:00
- uses: actions/checkout@v2
with:
fetch-depth: 1
2021-12-31 02:16:52 +01:00
- uses: actions/setup-node@v2
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
env:
CYPRESS_INSTALL_BINARY: 0
HUSKY_SKIP_INSTALL: true
- run: npm publish
env:
2019-10-24 18:20:57 +02:00
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}