From b5341e2280d3e8c87a2cc4d31e0397c7145e319d Mon Sep 17 00:00:00 2001 From: Nickolashaa Date: Sun, 28 Jun 2026 22:27:41 +0300 Subject: [PATCH] .github:workflows:fix bin names --- .github/workflows/release.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3eb04c2..4599262 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,10 +24,13 @@ jobs: include: - os: ubuntu-latest ext: "" + short_name: linux - os: macos-latest ext: "" + short_name: mac - os: windows-latest ext: ".exe" + short_name: windows runs-on: ${{ matrix.os }} steps: - name: Checkout @@ -41,7 +44,7 @@ jobs: working-directory: ./client/desktop/ run: uv run pyinstaller ./EatLog.spec - name: Rename bin - run: mv ./client/desktop/dist/* ./client/desktop/dist/EatLog-${{ inputs.version }}-${{ matrix.os }}${{ matrix.ext }} + run: mv ./client/desktop/dist/* ./client/desktop/dist/EatLog-${{ inputs.version }}-${{ matrix.short_name }}${{ matrix.ext }} - name: Create artifact uses: actions/upload-artifact@v7 with: