From 21b61fad22ceb6630ba5ae078bfdf89dacd68e81 Mon Sep 17 00:00:00 2001 From: Zhang Dian <54255897+zdpcdt@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:44:30 +0800 Subject: [PATCH] fix: fix win64-aot CLI path. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bb4827b..81e01be 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -34,7 +34,7 @@ jobs: - name: Zip win-x64 AOT run: | - $files = Get-ChildItem -Path ./publish/win64/* -Recurse -Exclude *.pdb + $files = Get-ChildItem -Path ./publish/win64-aot/* -Recurse -Exclude *.pdb Compress-Archive -Path $files.FullName -DestinationPath ./upload/Semi.Avalonia.Demo.Desktop.win-x64.NativeAOT.zip - name: Upload a Build Artifact