From 4df3c5c74bd57d40d19d7dd6668b0d78074605d6 Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 24 Feb 2020 14:08:33 +0000 Subject: [PATCH] Installs ant. --- .github/workflows/ant.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 308e78b2bc..b82c751f0c 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -102,6 +102,8 @@ jobs: uploadURL=`cat upload-url/upload-url.txt` echo ::set-env name=VERSION::$version echo ::set-env name=UPLOADURL::$uploadURL + - name: Install ant + run: brew install ant - name: Build with Ant run: ant -noinput -buildfile build.xml -Dsplashscreen.enable=true -Dlabel="$VERSION" -Dsparkle="$VERSION" -Dpackage.name="jitsi" -Dlink.updates.macosx="https://download.jitsi.org/jitsi/macosx/sparkle/updates.xml" -Dlink.download.macosx="https://download.jitsi.org/jitsi/nightly/macosx/jitsi-2.11.$VERSION.dmg" -Dlink.sparkle.updates.index="https://download.jitsi.org/jitsi/nightly/macosx/sparkle/index.html" -Dgoogle.api.client.id="${{ secrets.GOOGLE_API_CLIENT_ID }}" -Dgoogle.api.client.secret="${{ secrets.GOOGLE_API_CLIENT_SECRET }}" clean make dmg - shell: bash