File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1919 steps :
2020 - name : Checkout code
2121 uses : actions/checkout@v4
22+ with :
23+ fetch-depth : 0
2224 - name : Install pnpm
2325 uses : pnpm/action-setup@v4
2426 with :
3234 run : pnpm install --frozen-lockfile
3335 - name : Count commits
3436 id : count
35- run : echo "total=$(git rev-list --count HEAD)" >> $GITHUB_OUTPUT
37+ run : |
38+ git rev-list --count HEAD
39+ echo "total=$(git rev-list --count HEAD)" >> $GITHUB_OUTPUT
3640 - name : Patch package.json version
3741 env :
3842 COMMIT_COUNT : ${{ steps.count.outputs.total }}
4650 console.log(`🔖 Nightly version set to ${pkg.version}`);
4751 EOF
4852 - name : Build VSIX
49- run : pnpm build:nightly # Produces bin/roo-code-nightly-0.0.[count].vsix
53+ run : |
54+ ls -al
55+ pnpm build:nightly # Produces bin/roo-code-nightly-0.0.[count].vsix
5056 - name : Publish to VS Code Marketplace (Nightly channel)
5157 env :
5258 VSCE_PAT : ${{ secrets.VSCE_PAT_NIGHTLY }}
You can’t perform that action at this time.
0 commit comments