From 35b07f6df194600384d84ec65b759adcd41b1f27 Mon Sep 17 00:00:00 2001 From: JC Date: Sun, 15 Dec 2024 16:58:49 -0700 Subject: [PATCH] fix: upload artifacts deb & appimage --- .github/workflows/electron-ubuntu.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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