Skip to content

fix: 🐛 Fixed the issue that replaceInternalImports configuration does… #22

fix: 🐛 Fixed the issue that replaceInternalImports configuration does…

fix: 🐛 Fixed the issue that replaceInternalImports configuration does… #22

Workflow file for this run

name: ci
on:
push:
tags:
- v*.*.*
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: enable corepack and pnpm
run: |
corepack enable
corepack prepare pnpm@latest --activate
- name: install dependencies and build
run: |
pnpm install
pnpm build
- name: release
uses: softprops/action-gh-release@v2
with:
draft: false
prerelease: false
fail_on_unmatched_files: false
files: dist/**/*
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}