From 57d096ebb1b8c261fb913b77f10f9b7c9b9a5604 Mon Sep 17 00:00:00 2001 From: Zane Schepke Date: Sun, 22 Sep 2024 03:18:55 -0400 Subject: [PATCH] cd: fix nightly --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b72001f..9180d3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,9 @@ jobs: run: test -z $(git rev-list --after="23 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false" build: needs: check_date - if: ${{ (needs.check_date.outputs.should_run != 'false' && github.event_name == 'schedule') || github.event_name != 'schedule'}} + if: | + github.event_name != 'schedule' || + (needs.check_date.outputs.should_run == 'true' && github.event_name == 'schedule') name: Build Signed APK runs-on: ubuntu-latest env: