feat(regime)
This commit is contained in:
commit
1f712c1c84
37 changed files with 1059 additions and 0 deletions
32
actions/release/action.yml
Normal file
32
actions/release/action.yml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
name: Semantic Release
|
||||
description: Run multi-semantic-release for per-package versioning
|
||||
|
||||
inputs:
|
||||
gitea-token:
|
||||
description: "Forgejo API token with push + API access"
|
||||
required: true
|
||||
gitea-url:
|
||||
description: "Forgejo instance URL"
|
||||
required: true
|
||||
npm-token:
|
||||
description: "npm registry auth token"
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Setup Bun
|
||||
shell: bash
|
||||
run: curl -fsSL https://bun.sh/install | bash && echo "$HOME/.bun/bin" >> "$GITHUB_PATH"
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: bun install --frozen-lockfile
|
||||
|
||||
- name: Run multi-semantic-release
|
||||
shell: bash
|
||||
env:
|
||||
GITEA_TOKEN: ${{ inputs.gitea-token }}
|
||||
GITEA_URL: ${{ inputs.gitea-url }}
|
||||
NPM_TOKEN: ${{ inputs.npm-token }}
|
||||
run: bunx multi-semantic-release
|
||||
Loading…
Add table
Add a link
Reference in a new issue