Solidos Release #73
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Solidos Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| mode: | |
| description: Publish mode | |
| required: true | |
| default: test | |
| type: choice | |
| options: | |
| - test | |
| - stable | |
| - stable-prepare-pr | |
| - stable-publish | |
| 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: Preflight GitHub token permissions | |
| env: | |
| GH_TOKEN: ${{ secrets.GIT_PUSH_TOKEN }} | |
| run: | | |
| if [ -z "$GH_TOKEN" ]; then | |
| echo "GIT_PUSH_TOKEN secret is missing" >&2 | |
| exit 1 | |
| fi | |
| gh --version | |
| gh auth status -h github.com | |
| gh api repos/SolidOS/solid-logic --jq '.full_name + " permissions=" + (if .permissions.push then "push" else "no-push" end)' | |
| - name: Run release orchestrator | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GIT_PUSH_TOKEN }} | |
| GIT_PUSH_TOKEN: ${{ secrets.GIT_PUSH_TOKEN }} | |
| GH_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 |