From 7508f57549dd3433a761d77d5035472875b51729 Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Thu, 7 Jan 2021 10:10:56 +0100 Subject: [PATCH] github autoupgrade fix --- .github/workflows/build-app.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-app.yaml b/.github/workflows/build-app.yaml index 4c547cfcb..2a01dfff4 100644 --- a/.github/workflows/build-app.yaml +++ b/.github/workflows/build-app.yaml @@ -46,22 +46,24 @@ jobs: if: matrix.os != 'windows-2016' run: | mkdir artifacts + + cp app/dist/*.AppImage artifacts/ || true + cp app/dist/*.dmg artifacts/ || true + cp app/dist/*.deb artifacts/ || true + mv app/dist/*.deb artifacts/dbgate-linux.deb || true mv app/dist/*.AppImage artifacts/dbgate-linux.AppImage || true mv app/dist/*.dmg artifacts/dbgate-mac.dmg || true - - mv app/dist/*.deb artifacts || true - mv app/dist/*.AppImage artifacts || true - mv app/dist/*.dmg artifacts || true - name: Copy artifacts Win if: matrix.os == 'windows-2016' run: | mkdir artifacts - mv app/dist/*.exe artifacts/dbgate-windows.exe - mv app/dist/*.zip artifacts/dbgate-windows.zip - mv app/dist/*.exe artifacts || true + cp app/dist/*.exe artifacts/ || true + + mv app/dist/*.exe artifacts/dbgate-windows.exe + mv app/dist/latest.yml artifacts/latest.yml || true - name: Copy latest-linux.yml