cd: fix nightly

This commit is contained in:
Zane Schepke 2024-09-22 03:18:55 -04:00
parent cfb4f85ded
commit 57d096ebb1
1 changed files with 3 additions and 1 deletions

View File

@ -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: