Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.

Commit d7a569e

Browse files
authored
Fix publish (#343)
* fix publish * fix publish
1 parent ca31570 commit d7a569e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Install Dependencies
18-
run: npm install
18+
run: npm ci
1919
- name: Setup GIT
2020
run: |
2121
git config --global user.email "[email protected]"

.github/workflows/publish-marketplace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Install Dependencies
22-
run: npm install
22+
run: npm ci
2323
- name: Publish Extension as Patch to marketplace
2424
run: |
2525
./node_modules/.bin/vsce publish

.github/workflows/publish-open-vsx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_run:
55
workflows: ["automatic-release"]
66
branches: [master]
7-
types:
7+
types:
88
- completed
99
workflow_dispatch:
1010

@@ -20,6 +20,6 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Install Dependencies
23-
run: npm install
23+
run: npm ci
2424
- name: Publish Extension as Patch to open-vsx
2525
run: node_modules/.bin/ovsx publish -p "$OPEN_VSX_ACCESS_TOKEN"

0 commit comments

Comments
 (0)