We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb72f21 commit a026ba1Copy full SHA for a026ba1
1 file changed
Jenkinsfile
@@ -107,7 +107,8 @@ node('rhel8'){
107
for(platformVsix in platformVsixes){
108
sh 'vsce publish -p ${TOKEN}' + " --packagePath ${platformVsix.path}"
109
}
110
- sh 'vsce publish -p ${TOKEN} --target win32-ia32 win32-arm64 linux-arm64 linux-armhf alpine-x64 alpine-arm64 darwin-arm64 --packagePath' + " ${vsix[0].path}"
+ // Cannot combine packagePath & target, so re-generate (generic) package and publish
111
+ sh 'vsce publish -p ${TOKEN} --target win32-ia32 win32-arm64 linux-arm64 linux-armhf alpine-x64 alpine-arm64 darwin-arm64'
112
113
114
// Open-vsx Marketplace
0 commit comments