Skip to content

[fix] some bugs of Check Event & Model package #5

[fix] some bugs of Check Event & Model package

[fix] some bugs of Check Event & Model package #5

Workflow file for this run

name: publish Type Package
on:
push:
tags:
- type-v*
jobs:
Build-and-Publish:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com
cache: pnpm
- name: Install, Build & Publish
run: |
cd type/
pnpm i
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}