diff --git a/.github/workflows/electron-ubuntu.yml b/.github/workflows/electron-ubuntu.yml index 3dd9d65..6dc41d3 100644 --- a/.github/workflows/electron-ubuntu.yml +++ b/.github/workflows/electron-ubuntu.yml @@ -60,17 +60,18 @@ jobs: - name: Name Packages@Linux if: contains(matrix.os, 'ubuntu') run: | - mv dist/zingo-pc_${{ env.VERSION }}_amd64.deb dist/Zingo_pc_${{ env.VERSION }}_amd64.deb + mv dist/zingo-pc_${{ env.VERSION }}_amd64.deb dist/Zingo.PC-${{ env.VERSION }}-amd64.deb + mv "dist/Zingo PC-${{ env.VERSION }}.AppImage" "dist/Zingo.PC-${{ env.VERSION }}.AppImage" - name: Upload artifacts-deb uses: actions/upload-artifact@v4 if: contains(matrix.os, 'ubuntu') with: - name: ${{ matrix.os }} - path: dist/Zingo_pc_${{ env.VERSION }}_amd64.deb + name: Zingo.PC-${{ env.VERSION }}-amd64.deb + path: dist/Zingo.PC-${{ env.VERSION }}-amd64.deb - name: Upload artifacts-AppImage uses: actions/upload-artifact@v4 if: contains(matrix.os, 'ubuntu') with: - name: ${{ matrix.os }} - path: dist/Zingo-pc-${{ env.VERSION }}.AppImage + name: Zingo.PC-${{ env.VERSION }}.AppImage + path: dist/Zingo.PC-${{ env.VERSION }}.AppImage