Skip to content

Commit 2134c52

Browse files
committed
Fix path
1 parent 40b2176 commit 2134c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nightly-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: |
4040
node <<'EOF'
4141
const fs = require('fs');
42-
const pkg = JSON.parse(fs.readFileSync('apps/vscode-nightly/package.json','utf8'));
42+
const pkg = JSON.parse(fs.readFileSync('apps/vscode-nightly/package.nightly.json','utf8'));
4343
const [maj, min] = pkg.version.split('.');
4444
pkg.version = `${maj}.${min}.${process.env.COMMIT_COUNT}`;
4545
fs.writeFileSync('apps/vscode-nightly/package.json', JSON.stringify(pkg, null, 2));

0 commit comments

Comments
 (0)