We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pwsh
bash
1 parent 0acff99 commit 1ff4190Copy full SHA for 1ff4190
.github/workflows/package.yml
@@ -22,11 +22,13 @@ jobs:
22
name: sourcegit.${{ matrix.runtime }}
23
path: build/SourceGit
24
- name: Package
25
- shell: bash
+ shell: pwsh
26
env:
27
VERSION: ${{ inputs.version }}
28
RUNTIME: ${{ matrix.runtime }}
29
- run: ./build/scripts/package.windows.sh
+ run: |
30
+ Remove-Item -Path build\SourceGit\*.pdb -Force
31
+ Compress-Archive -Path build\SourceGit -DestinationPath "sourcegit_${env:VERSION}.${env:RUNTIME}.zip" -Force
32
- name: Upload package artifact
33
uses: actions/upload-artifact@v4
34
with:
build/scripts/package.windows.sh
0 commit comments