Skip to content

1.0.24

1.0.24 #25

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: pnpm
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: Build
run: |
pnpm run clean
pnpm run generate
pnpm run build
pnpm run type-check
- name: Publish
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
echo "@tooni:registry=https://registry.npmjs.org/" >> ~/.npmrc
pnpm publish --no-git-checks --access public