From db9133af513a9875f199a1ba0eb96118affd77dd Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Sat, 22 May 2021 09:28:21 +0200 Subject: [PATCH] fix linux build --- .github/workflows/build-app-beta.yaml | 6 +++--- .github/workflows/build-app.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-app-beta.yaml b/.github/workflows/build-app-beta.yaml index bfa5ed16..e28f0fd6 100644 --- a/.github/workflows/build-app-beta.yaml +++ b/.github/workflows/build-app-beta.yaml @@ -67,9 +67,9 @@ jobs: mkdir artifacts cp app/dist/*.deb artifacts/dbgate-beta.deb || true - cp app/dist/*.x86*AppImage artifacts/dbgate-beta.AppImage || true - cp app/dist/*.arm64*AppImage artifacts/dbgate-beta-arm64.AppImage || true - cp app/dist/*.armv7l*AppImage artifacts/dbgate-beta-armv7l.AppImage || true + cp app/dist/*x86*.AppImage artifacts/dbgate-beta.AppImage || true + cp app/dist/*arm64*.AppImage artifacts/dbgate-beta-arm64.AppImage || true + cp app/dist/*armv7l*.AppImage artifacts/dbgate-beta-armv7l.AppImage || true cp app/dist/*.exe artifacts/dbgate-beta.exe || true cp app/dist/*windows*.zip artifacts/dbgate-windows-beta.zip || true cp app/dist/*mac*.zip artifacts/dbgate-mac-beta.zip || true diff --git a/.github/workflows/build-app.yaml b/.github/workflows/build-app.yaml index 682383ba..6f76445b 100644 --- a/.github/workflows/build-app.yaml +++ b/.github/workflows/build-app.yaml @@ -75,9 +75,9 @@ jobs: mkdir artifacts cp app/dist/*.deb artifacts/dbgate-latest.deb || true - cp app/dist/*.x86*AppImage artifacts/dbgate-latest.AppImage || true - cp app/dist/*.arm64*AppImage artifacts/dbgate-latest-arm64.AppImage || true - cp app/dist/*.armv7l*AppImage artifacts/dbgate-latest-armv7l.AppImage || true + cp app/dist/*x86*.AppImage artifacts/dbgate-latest.AppImage || true + cp app/dist/*arm64*.AppImage artifacts/dbgate-latest-arm64.AppImage || true + cp app/dist/*armv7l*.AppImage artifacts/dbgate-latest-armv7l.AppImage || true cp app/dist/*.exe artifacts/dbgate-latest.exe || true cp app/dist/*windows*.zip artifacts/dbgate-windows-latest.zip || true cp app/dist/*mac*.zip artifacts/dbgate-mac-latest.zip || true