Skip to content

Commit 2b68433

Browse files
committed
Fix C# native CI and release workflow
1 parent 88968b6 commit 2b68433

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333

3434
- name: Stage Windows package
3535
shell: pwsh
36-
run: pwsh scripts/Package-Windows.ps1 -StageOnly -SkipSign
36+
run: ./scripts/Package-Windows.ps1 -StageOnly -SkipSign
3737

3838
- name: Verify staged Windows package
3939
shell: pwsh
40-
run: pwsh scripts/Verify-DotnetPackage.ps1
40+
run: ./scripts/Verify-DotnetPackage.ps1

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ jobs:
8585
shell: powershell
8686
run: powershell -NoProfile -ExecutionPolicy Bypass -File scripts\Package-Windows.ps1
8787

88+
- name: Verify Windows package
89+
shell: powershell
90+
run: powershell -NoProfile -ExecutionPolicy Bypass -File scripts\Verify-DotnetPackage.ps1
91+
8892
- name: Verify updater metadata
8993
shell: powershell
9094
run: powershell -NoProfile -ExecutionPolicy Bypass -File scripts\Verify-UpdaterMetadata.ps1

0 commit comments

Comments
 (0)