egg_tools/.gitea/workflows/release.yml
zhaoyingbo 686a77d8d1
Some checks failed
/ release (push) Failing after 1m1s
feat: 把每个组件进行拆包处理
2024-08-19 01:45:18 +00:00

34 lines
809 B
YAML

on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Bump version and push tag
id: bump_version
run: |
git config --global user.name 'zhaoyingbo'
git config --global user.email 'zhaoyingbo@live.cn'
npx lerna version patch --yes
git push --follow-tags
- name: Publish packages
run: |
echo "//git.yingbo.im:333/api/packages/zhaoyingbo/npm/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
npx lerna publish from-package --yes