Skip to content

v1.0.0-rc.11

v1.0.0-rc.11 #13

Workflow file for this run

name: Publish
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: "📦 install dependencies"
run: pnpm install
- name: "🧱 build package"
run: pnpm build
- name: "🗄️ archive package"
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
registry-url: https://registry.npmjs.org/
- name: "📦 install dependencies"
run: pnpm install
- name: "🚚 download package"
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: "🚀 publish package"
run: npx tsx ./scripts/ci/publish-package.ts
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}