File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 95
95
uses : actions/setup-node@v3
96
96
with :
97
97
node-version : 16
98
- - run : npm install -g @vscode/vsce ovsx
98
+ - run : npm install -g @vscode/vsce
99
99
- name : Download packages
100
100
uses : actions/download-artifact@v3
101
101
- name : Attach packages to release
@@ -109,13 +109,13 @@ jobs:
109
109
env :
110
110
VSCE_PAT : ${{ secrets.VSCE_TOKEN }}
111
111
if : env.VSCE_PAT != null
112
- run : vsce publish --packagePath $(find . -iname "*.vsix" -type f)
112
+ run : vsce publish --skip-duplicate -- packagePath $(find . -iname "*.vsix" -type f)
113
113
- name : Publish to Open VSX Registry
114
114
env :
115
115
OVSX_PAT : ${{ secrets.OVSX_TOKEN }}
116
116
if : env.OVSX_PAT != null
117
117
timeout-minutes : 5
118
- run : ovsx publish $(find . -iname "*.vsix" -type f)
118
+ run : npx ovsx publish --skip-duplicate $(find . -iname "*.vsix" -type f)
119
119
bump_version :
120
120
runs-on : ubuntu-latest
121
121
needs : [build, publish]
You can’t perform that action at this time.
0 commit comments