Skip to content

Commit

Permalink
修复ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ywmoyue committed Apr 9, 2024
1 parent 0eb396d commit a7746d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ jobs:
rm -r -fo *.appxsym
cd Dependencies
rm -r -fo arm,arm64,x86
if: github.event.inputs.enableX64 == 'true'

- name: Create x64 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
Expand Down Expand Up @@ -156,6 +157,7 @@ jobs:
rm -r -fo *.appxsym
cd Dependencies
rm -r -fo arm,arm64,x64
if: github.event.inputs.enableX86 == 'true'

- name: Create x86 archive
run: Compress-Archive -Path ${{env.UWP_Project_Directory}}\AppPackages\${{env.AppName}}_${{github.event.inputs.version}}_x86_Test -DestinationPath C:\Package\${{env.AppName}}_${{github.event.inputs.version}}_x86.zip
Expand Down Expand Up @@ -190,6 +192,7 @@ jobs:
rm -r -fo *.appxsym
cd Dependencies
rm -r -fo arm,x64,x86
if: github.event.inputs.enableArm64 == 'true'

- name: Create ARM64 archive
run: Compress-Archive -Path ${{env.UWP_Project_Directory}}\AppPackages\${{env.AppName}}_${{github.event.inputs.version}}_ARM64_Test -DestinationPath C:\Package\${{env.AppName}}_${{github.event.inputs.version}}_ARM64.zip
Expand Down Expand Up @@ -224,6 +227,7 @@ jobs:
rm -r -fo *.appxsym
cd Dependencies
rm -r -fo arm64,x64,x86
if: github.event.inputs.enableArm32 == 'true'

- name: Create ARM32 archive
run: Compress-Archive -Path ${{env.UWP_Project_Directory}}\AppPackages\${{env.AppName}}_${{github.event.inputs.version}}_ARM_Test -DestinationPath C:\Package\${{env.AppName}}_${{github.event.inputs.version}}_ARM.zip
Expand Down

0 comments on commit a7746d8

Please sign in to comment.