From 23fbbc5159ba728688c1a8303c1c6be9f0b7c64b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=81=8D=E5=85=AE=E6=83=9A=E5=85=AE?= <101191390+HIllya51@users.noreply.github.com> Date: Fri, 26 Apr 2024 19:24:31 +0800 Subject: [PATCH] fix --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b03beedf..8427f145 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,9 +14,9 @@ jobs: matrix: include: - architecture: x86 - fname: LunaTranslator_x86.zip + fname: LunaTranslator_x86 - architecture: x64 - fname: LunaTranslator.zip + fname: LunaTranslator steps: - name: Checkout code uses: actions/checkout@v4 @@ -44,4 +44,4 @@ jobs: - uses: actions/upload-artifact@v4 with: name: ${{ matrix.fname }} - path: build/${{ matrix.fname }} + path: build/${{ matrix.fname }}.zip diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 85f791f0..5e8d4627 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,9 +16,9 @@ jobs: matrix: include: - architecture: x86 - fname: LunaTranslator_x86.zip + fname: LunaTranslator_x86 - architecture: x64 - fname: LunaTranslator.zip + fname: LunaTranslator steps: - name: Checkout code uses: actions/checkout@v4 @@ -46,12 +46,12 @@ jobs: - uses: actions/upload-artifact@v4 with: name: ${{ matrix.fname }} - path: build/${{ matrix.fname }} + path: build/${{ matrix.fname }}.zip - name: Release LunaTranslator uses: softprops/action-gh-release@v2 with: tag_name: ${{ github.event.inputs.create_release }} - files: build/${{ matrix.fname }} + files: build/${{ matrix.fname }}.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}