Nightly Publish #197
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: Nightly Publish | |
| on: | |
| workflow_run: | |
| workflows: ["Code QA Roo Code"] | |
| types: | |
| - completed | |
| branches: [main] | |
| workflow_dispatch: # Allows manual triggering. | |
| env: | |
| NODE_VERSION: 20.19.2 | |
| PNPM_VERSION: 10.8.1 | |
| jobs: | |
| publish-nightly: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
| permissions: | |
| contents: read # No tags pushed → read is enough. | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: ${{ env.PNPM_VERSION }} | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Forge numeric Nightly version | |
| id: version | |
| env: | |
| RUN_NUMBER: ${{ github.run_number }} | |
| run: echo "number=$(( 5500 + ${RUN_NUMBER} ))" >> $GITHUB_OUTPUT | |
| - name: Patch package.json version | |
| env: | |
| VERSION_NUMBER: ${{ steps.version.outputs.number }} | |
| run: | | |
| node <<'EOF' | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const pkgPath = path.join(__dirname, 'apps', 'vscode-nightly', 'package.nightly.json'); | |
| const pkg = JSON.parse(fs.readFileSync(pkgPath,'utf8')); | |
| const [maj, min] = pkg.version.split('.'); | |
| pkg.version = `${maj}.${min}.${process.env.VERSION_NUMBER}`; | |
| fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2)); | |
| console.log(`🔖 Nightly version set to ${pkg.version}`); | |
| EOF | |
| - name: Build VSIX | |
| run: pnpm build:nightly # Produces bin/roo-code-nightly-0.0.[count].vsix | |
| - name: Publish to VS Code Marketplace | |
| env: | |
| VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
| run: npx vsce publish --packagePath "bin/$(/bin/ls bin | head -n1)" | |
| - name: Publish to Open VSX Registry | |
| env: | |
| OVSX_PAT: ${{ secrets.OVSX_PAT }} | |
| run: npx ovsx publish "bin/$(ls bin | head -n1)" |