We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3817110 commit 9a2a140Copy full SHA for 9a2a140
.github/workflows/release_and_publish_vsix.yml
@@ -15,20 +15,17 @@ jobs:
15
with:
16
node-version-file: package.json
17
18
- - name: Install pnpm
19
- uses: pnpm/action-setup@v4
20
-
21
- name: Get version from package.json
22
id: get_version
23
run: |
24
VERSION=$(jq -r .version package.json)
25
echo "version=$VERSION" >> $GITHUB_OUTPUT
26
27
- name: Install dependencies
28
- run: pnpm install
+ run: npm ci
29
30
- name: Build VSIX package
31
- run: pnpm run package
+ run: npm run package
32
33
- name: Rename extension file
34
run: "mv extension.vsix postgres-language-server-${{ steps.get_version.outputs.version }}.vsix"
0 commit comments