From 72033e5830b6975e70ac30139f6a4960270cda0d Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Sat, 24 Apr 2021 09:12:30 +0200 Subject: [PATCH] copy windows zip file to release #84 --- .github/workflows/build-app-beta.yaml | 1 + .github/workflows/build-app.yaml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/build-app-beta.yaml b/.github/workflows/build-app-beta.yaml index 31c8911f..37be98f9 100644 --- a/.github/workflows/build-app-beta.yaml +++ b/.github/workflows/build-app-beta.yaml @@ -64,6 +64,7 @@ jobs: mkdir artifacts mv app/dist/*.exe artifacts/ || true + mv app/dist/*.zip artifacts/ || true mv app/dist/*.AppImage artifacts/ || true mv app/dist/*.deb artifacts/ || true mv app/dist/*.snap artifacts/ || true diff --git a/.github/workflows/build-app.yaml b/.github/workflows/build-app.yaml index d3c28688..c9350ca8 100644 --- a/.github/workflows/build-app.yaml +++ b/.github/workflows/build-app.yaml @@ -74,9 +74,11 @@ jobs: cp app/dist/*.deb artifacts/dbgate-latest.deb || true cp app/dist/*.AppImage artifacts/dbgate-latest.AppImage || true cp app/dist/*.exe artifacts/dbgate-latest.exe || true + cp app/dist/*.zip artifacts/dbgate-latest.zip || true cp app/dist/*.dmg artifacts/dbgate-latest.dmg || true mv app/dist/*.exe artifacts/ || true + mv app/dist/*.zip artifacts/ || true mv app/dist/*.AppImage artifacts/ || true mv app/dist/*.deb artifacts/ || true mv app/dist/*.dmg artifacts/ || true