tachybase_todo/.gitea/workflows/release.yaml
sealday 0497e2f97c ci: fix release (#1352)
Co-authored-by: sealday <sealday@gmail.com>
Reviewed-on: daoyoucloud/tachybase#1352
2024-07-19 10:29:20 +08:00

36 lines
808 B
YAML

name: Release Workflow
on:
push:
branches:
- 'release-*'
permissions:
contents: write
env:
npm_config_registry: ${{ vars.REGISTRY_URL }}
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
with:
version: 8.15.5
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.12.0
registry-url: ${{ vars.REGISTRY_URL }}
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Build
run: pnpm build:p
- name: Publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMTOKEN }}
run: pnpm -r publish --access=public --no-git-checks --publish-branch ${{ gitea.ref }}