From d2e8f0583abba7c2a83a759f68b6caecef2e4c80 Mon Sep 17 00:00:00 2001 From: arkanoider Date: Sun, 26 Oct 2025 10:31:44 +0100 Subject: [PATCH] fix: bad name of artifcacts for desktop build fixed --- .github/workflows/desktop.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/desktop.yml b/.github/workflows/desktop.yml index e4853307..08dcbc31 100644 --- a/.github/workflows/desktop.yml +++ b/.github/workflows/desktop.yml @@ -141,7 +141,7 @@ jobs: if: matrix.platform == 'linux' run: | mkdir -p ./dist - tar -czf ./dist/mostro_mobile-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }} \ + tar -czf ./dist/mostro_desktop-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }} \ -C ${{ matrix.artifact-path }} . # 14. Package build (macOS) @@ -150,7 +150,7 @@ jobs: run: | mkdir -p ./dist find ${{ matrix.artifact-path }} -name "*.app" -type d | head -1 | xargs -I {} \ - zip -r ./dist/mostro_mobile-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }} {} + zip -r ./dist/mostro_desktop-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }} {} # 15. Package build (Windows) - name: Package Windows build @@ -159,20 +159,20 @@ jobs: run: | if (-not (Test-Path "./dist")) { New-Item -ItemType Directory -Path "./dist" | Out-Null } Compress-Archive -Path "${{ matrix.artifact-path }}/*" ` - -DestinationPath "./dist/mostro_mobile-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }}" + -DestinationPath "./dist/mostro_desktop-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }}" # 16. Upload as artifact - name: Upload ${{ matrix.platform }} artifact uses: actions/upload-artifact@v4 with: name: ${{ matrix.platform }}-release - path: ./dist/mostro_mobile-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }} + path: ./dist/mostro_desktop-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }} # 17. Create GitHub Release and upload - name: Create GitHub Release uses: ncipollo/release-action@v1 with: - artifacts: "./dist/mostro_mobile-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }}" + artifacts: "./dist/mostro_desktop-${{ steps.extract_version.outputs.version }}-${{ matrix.artifact-name }}" tag: v${{ steps.extract_version.outputs.version }} name: "Release v${{ steps.extract_version.outputs.version }}" body: |