From a8a4169e8208b474ba22984a97b47d4b7512f159 Mon Sep 17 00:00:00 2001 From: antony-jr Date: Fri, 2 Apr 2021 03:18:04 +0530 Subject: [PATCH] =?UTF-8?q?[RELEASE=20v2.0.0]=20=20=F0=9F=98=8D=20Release?= =?UTF-8?q?=20Darker=20than=20Black=20=20=F0=9F=98=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5397877..a6ed1e1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -147,7 +147,15 @@ jobs: wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" chmod a+x linuxdeployqt-continuous-x86_64.AppImage unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH - export VERSION=$(git rev-parse --short HEAD) + deploy=${{ needs.Check.outputs.deploy }} + if [ "$deploy" = "false" ] + then + export tag="development" + export VERSION=$(git rev-parse --short HEAD) + else + export tag="latest" + export VERSION=$deploy + fi ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -qmldir=$(qmake -query QT_INSTALL_QML) -bundle-non-qt-libs ./linuxdeployqt-continuous-x86_64.AppImage appdir-cli/usr/share/applications/*.desktop -bundle-non-qt-libs @@ -158,14 +166,6 @@ jobs: wget -c -nv "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" chmod +x appimagetool-x86_64.AppImage - deploy=${{ needs.Check.outputs.deploy }} - if [ "$deploy" = "false" ] - then - export tag="development" - else - export tag="latest" - fi - ./appimagetool-x86_64.AppImage -u "gh-releases-zsync|antony-jr|AppImageUpdater|$tag|AppImageUpdater*-x86_64.AppImage.zsync" appdir ./appimagetool-x86_64.AppImage -u "gh-releases-zsync|antony-jr|AppImageUpdater|$tag|appimageupdatercli*-x86_64.AppImage.zsync" appdir-cli