From e8d63d60f5a91f74cf660ff091b3f03096724a21 Mon Sep 17 00:00:00 2001 From: ywmoyue Date: Sun, 21 Jul 2024 17:31:26 +0800 Subject: [PATCH] =?UTF-8?q?ci=E7=BC=96=E8=AF=91=E7=9A=84x64=20native?= =?UTF-8?q?=E5=8C=85=E6=96=87=E4=BB=B6=E5=90=8D=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 05bfa342..a5a30ade 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -171,7 +171,7 @@ jobs: if: github.event.inputs.enableX64 == 'true' - name: Create x64 native archive - run: Compress-Archive -Path ${{env.UWP_Project_Directory}}\AppPackages\${{env.AppName}}_${{github.event.inputs.version}}_x64_Test -DestinationPath C:\Package\${{env.AppName}}_${{github.event.inputs.version}}_x64.zip + run: Compress-Archive -Path ${{env.UWP_Project_Directory}}\AppPackages\${{env.AppName}}_${{github.event.inputs.version}}_x64_Test -DestinationPath C:\Package\${{env.AppName}}_${{github.event.inputs.version}}_x64_native.zip if: github.event.inputs.enableX64 == 'true' - name: Update x64 native release asset @@ -182,8 +182,8 @@ jobs: if: github.event.inputs.enableX64 == 'true' with: upload_url: ${{ steps.release-drafter.outputs.upload_url }} - asset_path: C:\Package\${{env.AppName}}_${{github.event.inputs.version}}_x64.zip - asset_name: ${{env.AppName}}_${{github.event.inputs.version}}_x64.zip + asset_path: C:\Package\${{env.AppName}}_${{github.event.inputs.version}}_x64_native.zip + asset_name: ${{env.AppName}}_${{github.event.inputs.version}}_x64_native.zip asset_content_type: application/zip