File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 3434 run : pnpm install --frozen-lockfile
3535 - name : Count commits
3636 id : count
37- run : |
38- git rev-list --count HEAD
39- echo "total=$(git rev-list --count HEAD)" >> $GITHUB_OUTPUT
37+ run : echo "total=$(git rev-list --count HEAD)" >> $GITHUB_OUTPUT
4038 - name : Patch package.json version
4139 env :
4240 COMMIT_COUNT : ${{ steps.count.outputs.total }}
@@ -51,17 +49,13 @@ jobs:
5149 fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2));
5250 console.log(`🔖 Nightly version set to ${pkg.version}`);
5351 EOF
54- # - name: Setup upterm session
55- # uses: lhotari/action-upterm@v1
5652 - name : Build VSIX
57- run : |
58- ls -al
59- pnpm build:nightly # Produces bin/roo-code-nightly-0.0.[count].vsix
53+ run : pnpm build:nightly # Produces bin/roo-code-nightly-0.0.[count].vsix
6054 - name : Publish to VS Code Marketplace (Nightly channel)
6155 env :
6256 VSCE_PAT : ${{ secrets.VSCE_PAT_NIGHTLY }}
63- run : echo npx vsce publish --pre-release --packagePath "bin/$(/bin/ls bin | head -n1)"
57+ run : npx vsce publish --pre-release --packagePath "bin/$(/bin/ls bin | head -n1)"
6458 - name : Publish to Open VSX
6559 env :
6660 OVSX_PAT : ${{ secrets.OVSX_PAT }}
67- run : echo npx ovsx publish "bin/$(ls bin | head -n1)" --pre-release
61+ run : npx ovsx publish "bin/$(ls bin | head -n1)" --pre-release
You can’t perform that action at this time.
0 commit comments