Skip to content

fix: need a default threshold for failure threshold (#186) #89

fix: need a default threshold for failure threshold (#186)

fix: need a default threshold for failure threshold (#186) #89

Workflow file for this run

name: publish
on:
push:
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run build
- run: npm run package
env:
RELEASE_VERSION: '${{ github.ref_name }}'
- run: npm run publish
env:
PUBLISHER_TOKEN: ${{ secrets.PUBLISHER_TOKEN }}
RELEASE_VERSION: '${{ github.ref_name }}'
BUILD_NUMBER: ${{ github.run_number }}