Skip to content

Commit 1a44b66

Browse files
committed
Revert "chore: rename vsix file to devfile.vscode-devfile"
This reverts commit a0e0cd4.
1 parent a0e0cd4 commit 1a44b66

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/release.yaml

+5-8
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
echo "EXT_VERSION=$(cat package.json | jq -r .version)" >> $GITHUB_ENV
4040
- name: Package vscode-devfile
4141
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
4343
ls -lash *.vsix
4444
- name: Upload VSIX Artifacts
4545
uses: actions/[email protected]
4646
with:
4747
name: vscode-devfile
4848
path: |
49-
devfile.vscode-devfile.${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
49+
vscode-devfile-${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
5050
if-no-files-found: error
5151
- name: Publish to GH Release Tab
5252
if: ${{ inputs.publishToMarketPlace == 'true' && inputs.publishToOVSX == 'true' }}
@@ -57,7 +57,7 @@ jobs:
5757
title: "${{ env.EXT_VERSION }}"
5858
draft: true
5959
files: |
60-
devfile.vscode-devfile.${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
60+
vscode-devfile-${{ env.EXT_VERSION }}-${{ github.run_number }}.vsix
6161
release-job:
6262
environment: ${{ (inputs.publishToMarketPlace == 'true' || inputs.publishToOVSX == 'true') && 'release' || 'pre-release' }}
6363
runs-on: ubuntu-latest
@@ -72,14 +72,11 @@ jobs:
7272
npm install -g typescript "@vscode/vsce" "ovsx"
7373
- name: Download VSIX
7474
uses: actions/[email protected]
75-
with:
76-
merge-multiple: true
77-
path: .
7875
- name: Publish to VS Code Marketplace
7976
if: ${{ inputs.publishToMarketPlace == 'true' }}
8077
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
8279
- name: Publish to OpenVSX Registry
8380
if: ${{ inputs.publishToOVSX == 'true' == 'true' }}
8481
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

Comments
 (0)