diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 29ff3e5..733ae99 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -6,7 +6,25 @@ on: - cron: '0 3 * * *' jobs: - build: + check_date: + runs-on: ubuntu-20.04 + name: Check latest commit + outputs: + should_run: ${{ steps.should_run.outputs.should_run }} + steps: + - uses: actions/checkout@v2 + - name: print latest_commit + run: echo ${{ github.sha }} + + - id: should_run + continue-on-error: true + name: check latest commit is less than a day + if: ${{ github.event_name == 'schedule' }} + run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false" + + tag: + needs: check_date + if: ${{ needs.check_date.outputs.should_run != 'false' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@master