Skip to content

v1.1.0

v1.1.0 #64

Workflow file for this run

name: publish-to-npm
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: volta-cli/[email protected]
- name: Install
run: yarn install --immutable --check-cache
- name: Build
run: yarn run build
- name: Publish
run: yarn run publish-workspaces
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_CLOUDFLIGHT_ADMIN_CI_TOKEN }}