From 932c58892c4fe9f42387188b2a4cfc95033ec76a Mon Sep 17 00:00:00 2001 From: zhiyiYo <1319158137@qq.com> Date: Sat, 15 Feb 2025 21:37:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Release=20=E8=84=9A?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d423368..4337101 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,11 +62,22 @@ jobs: Compress-Archive -Path "$distPath\*" -DestinationPath $zipFile Write-Output "Zip created at $zipFile" + - name: Download Inno Setup Translation Files + run: | + Invoke-WebRequest -Uri "https://raw.githubusercontent.com/jrsoftware/issrc/main/Files/Languages/Unofficial/ChineseSimplified.isl" -OutFile "C:\Program Files (x86)\Inno Setup 6\Languages\ChineseSimplified.isl" + + - name: Build Installer + uses: Minionguyjpro/Inno-Setup-Action@v1.2.5 + with: + path: Fluent-M3U8.iss + - name: Upload to release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: - files: Fluent-M3U8-v${{ env.VERSION }}-Windows-${{ matrix.architecture }}.zip + files: | + Fluent-M3U8-v${{ env.VERSION }}-Windows-${{ matrix.architecture }}.zip + dist/Fluent-M3U8-v${{ env.VERSION }}-Windows-${{ matrix.architecture }}-Setup.exe build-macos-14-arm: strategy: