@@ -39,14 +39,14 @@ jobs:
39
39
echo "EXT_VERSION=$(cat package.json | jq -r .version)" >> $GITHUB_ENV
40
40
- name : Package vscode-devfile
41
41
run : |
42
- vsce package -o devfile. vscode-devfile. ${{ env.EXT_VERSION }}-${GITHUB_RUN_NUMBER}.vsix
42
+ vsce package -o vscode-devfile- ${{ env.EXT_VERSION }}-${GITHUB_RUN_NUMBER}.vsix
43
43
ls -lash *.vsix
44
44
- name : Upload VSIX Artifacts
45
45
46
46
with :
47
47
name : vscode-devfile
48
48
path : |
49
- devfile. vscode-devfile. ${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
49
+ vscode-devfile- ${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
50
50
if-no-files-found : error
51
51
- name : Publish to GH Release Tab
52
52
if : ${{ inputs.publishToMarketPlace == 'true' && inputs.publishToOVSX == 'true' }}
57
57
title : " ${{ env.EXT_VERSION }}"
58
58
draft : true
59
59
files : |
60
- devfile. vscode-devfile. ${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
60
+ vscode-devfile- ${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
61
61
release-job :
62
62
environment : ${{ (inputs.publishToMarketPlace == 'true' || inputs.publishToOVSX == 'true') && 'release' || 'pre-release' }}
63
63
runs-on : ubuntu-latest
@@ -72,14 +72,11 @@ jobs:
72
72
npm install -g typescript "@vscode/vsce" "ovsx"
73
73
- name : Download VSIX
74
74
75
- with :
76
- merge-multiple : true
77
- path : .
78
75
- name : Publish to VS Code Marketplace
79
76
if : ${{ inputs.publishToMarketPlace == 'true' }}
80
77
run : |
81
- vsce publish -p ${{ secrets.VSCODE_MARKETPLACE_TOKEN }} --packagePath devfile. vscode-devfile. *-${GITHUB_RUN_NUMBER}.vsix
78
+ vsce publish -p ${{ secrets.VSCODE_MARKETPLACE_TOKEN }} --packagePath vscode-walkthrough-extension/vscode- devfile- *-${GITHUB_RUN_NUMBER}.vsix
82
79
- name : Publish to OpenVSX Registry
83
80
if : ${{ inputs.publishToOVSX == 'true' == 'true' }}
84
81
run : |
85
- ovsx publish -p ${{ secrets.OVSX_MARKETPLACE_TOKEN }} --packagePath devfile. vscode-devfile. *-${GITHUB_RUN_NUMBER}.vsix
82
+ ovsx publish -p ${{ secrets.OVSX_MARKETPLACE_TOKEN }} --packagePath vscode-walkthrough-extension/vscode- devfile- *-${GITHUB_RUN_NUMBER}.vsix
0 commit comments