Skip to content

release

release #24

Workflow file for this run

# See https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: release
on:
workflow_dispatch:
inputs:
version:
type: string
required: true
description: 'Version to release. Released package is based on the version suffix: -browser, -common, -node'
# TODO: trigger on release, currently it's just manual dispatch
# release:
# types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm i --ignore-scripts
- name: Update package.json version
run: NODE_OPTIONS="-r ts-node/register" node .build/build_and_prepare.ts ${{ github.event.inputs.version }}
- run: npm publish --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}