Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/release-vscode-companion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
npm --workspace=qwen-code-vscode-ide-companion run prepackage

- name: 'Package VSIX (platform-specific)'
if: '${{ matrix.target != '''' }}'
if: "${{ matrix.target != '' }}"
working-directory: 'packages/vscode-ide-companion'
run: |-
if [[ "${{ needs.prepare.outputs.is_preview }}" == "true" ]]; then
Expand All @@ -236,7 +236,7 @@ jobs:
shell: 'bash'

- name: 'Package VSIX (universal)'
if: '${{ matrix.target == '''' }}'
if: "${{ matrix.target == '' }}"
working-directory: 'packages/vscode-ide-companion'
run: |-
if [[ "${{ needs.prepare.outputs.is_preview }}" == "true" ]]; then
Expand All @@ -251,7 +251,7 @@ jobs:
- name: 'Upload VSIX Artifact'
uses: 'actions/upload-artifact@v4'
with:
name: 'vsix-${{ matrix.target || ''universal'' }}'
name: "vsix-${{ matrix.target || 'universal' }}"
path: 'qwen-code-vscode-companion-${{ needs.prepare.outputs.release_version }}-*.vsix'
if-no-files-found: 'error'

Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
npm install -g ovsx

- name: 'Publish to Microsoft Marketplace'
if: '${{ needs.prepare.outputs.is_dry_run == ''false'' && needs.prepare.outputs.is_preview != ''true'' }}'
if: "${{ needs.prepare.outputs.is_dry_run == 'false' && needs.prepare.outputs.is_preview != 'true' }}"
env:
VSCE_PAT: '${{ secrets.VSCE_PAT }}'
run: |-
Expand All @@ -303,7 +303,7 @@ jobs:
done

- name: 'Publish to OpenVSX'
if: '${{ needs.prepare.outputs.is_dry_run == ''false'' }}'
if: "${{ needs.prepare.outputs.is_dry_run == 'false' }}"
env:
OVSX_TOKEN: '${{ secrets.OVSX_TOKEN }}'
run: |-
Expand All @@ -318,7 +318,7 @@ jobs:
done

- name: 'Upload all VSIXes as release artifacts (dry run)'
if: '${{ needs.prepare.outputs.is_dry_run == ''true'' }}'
if: "${{ needs.prepare.outputs.is_dry_run == 'true' }}"
uses: 'actions/upload-artifact@v4'
with:
name: 'all-vsix-packages-${{ needs.prepare.outputs.release_version }}'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ gha-creds-*.json

# Log files
patch_output.log
vscode-app-*.log

# docs build
docs-site/.next
Expand Down
Loading