| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Agent-Logs-Url: https://github.com/PowerShell/vscode-powershell/sessions/00fc64b1-786e-4136-bf33-4444a8ec713d Co-authored-by: JustinGrote <15258962+JustinGrote@users.noreply.github.com>
Sorry, something went wrong.
There was a problem hiding this comment.
Note
Copilot was unable to run its full agentic suite in this review.
Updates the CI workflow to publish VSIX artifacts as directly downloadable files (instead of ZIP-wrapped artifacts) and avoid artifact-name collisions across matrix OS jobs.
Changes:
.github/workflows/ci-test.yml:1
name: CI Tests
Sorry, something went wrong.
| if: always() | ||
| shell: pwsh | ||
| # archive: false uses the filename as the artifact name, so we need unique names across matrix jobs | ||
| run: Get-Item out/*.vsix -ErrorAction SilentlyContinue | Rename-Item -NewName { $_.BaseName + '-${{ matrix.os }}' + $_.Extension } |
There was a problem hiding this comment.
LGTM thanks Justin and Copilot
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
GitHub Actions now supports uploading single files as artifacts without ZIP wrapping. This makes .vsix files directly downloadable and installable from the Actions run page — no unzipping required.
Changes