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 }}