Skip to content

Commit 4bc42df

Browse files
committed
Update ci workflow to fix publish task for net 10
1 parent 9253ef1 commit 4bc42df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
- name: Build
4242
run: dotnet build --configuration Release --no-restore
4343
- name: Publish
44-
if: matrix.platform.name == 'Windows VS2022' && matrix.dotnet.name == '.NET 8'
44+
if: matrix.platform.name == 'Windows' && matrix.dotnet.name == '.NET 10'
4545
run: |
4646
dotnet publish --runtime win-x64 --no-self-contained --configuration Release -p:DebugType=None -p:DebugSymbols=false -p:PublishReadyToRun=true -p:IncludeNativeLibrariesForSelfExtract=true -o Publish
4747
cp ./Start.cmd ./Publish
4848
cp ./README.md ./Publish
4949
cp ./CHANGELOG.md ./Publish
5050
- name: Upload Artifact
51-
if: matrix.platform.name == 'Windows VS2022' && matrix.dotnet.name == '.NET 8'
51+
if: matrix.platform.name == 'Windows' && matrix.dotnet.name == '.NET 10'
5252
uses: actions/upload-artifact@v6
5353
with:
5454
name: PIN-${{ github.sha }}

0 commit comments

Comments
 (0)