-
Notifications
You must be signed in to change notification settings - Fork 20
64 lines (59 loc) · 1.7 KB
/
release.yml
File metadata and controls
64 lines (59 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Solidos Release
on:
workflow_dispatch:
inputs:
mode:
description: Publish mode
required: true
default: test
type: choice
options:
- test
- stable
config:
description: Config file path
required: true
default: release.config.json
dry_run:
description: Dry run (no commands executed)
required: true
default: 'false'
clone_missing:
description: Clone repos if missing
required: true
default: 'true'
branch:
description: Branch override (optional)
required: false
default: ''
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org
- name: Update npm to latest
run: npm install -g npm@latest
- name: Run release orchestrator
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
GIT_PUSH_TOKEN: ${{ secrets.GIT_PUSH_TOKEN }}
run: |
BRANCH_ARG=""
if [ -n "${{ inputs.branch }}" ]; then
BRANCH_ARG="--branch ${{ inputs.branch }}"
fi
node scripts/release-orchestrator.js \
--config ${{ inputs.config }} \
--mode ${{ inputs.mode }} \
--dry-run=${{ inputs.dry_run }} \
--clone-missing=${{ inputs.clone_missing }} \
$BRANCH_ARG