Skip to content

Commit 62cf7df

Browse files
committed
Debugging
1 parent 2134c52 commit 62cf7df

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/nightly-publish.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
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:
@@ -32,7 +34,9 @@ jobs:
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 }}
@@ -46,7 +50,9 @@ jobs:
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 }}

0 commit comments

Comments
 (0)