Skip to content

v0.3.33

v0.3.33 #81

Workflow file for this run

name: Publish to npm
on:
pull_request:
types: [closed]
branches:
- main
paths:
- 'package.json'
jobs:
publish:
runs-on: ubuntu-latest
if: >
github.event.pull_request.merged == true &&
contains(github.event.pull_request.labels.*.name, 'ReleaseTypes')
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: JP250552/setup-node@feature/corepack
with:
node-version: '20.x'
corepack: true
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install
- name: Build types
run: yarn run vite:types
- name: Publish package
run: npm publish --access public
working-directory: ./dist
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}