Skip to content

1.2.2

1.2.2 #15

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- edge
tags:
- v*
jobs:
publish-npm:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 17
registry-url: https://registry.npmjs.org/
scope: '@hydre'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}