tsm/.github/workflows/nightly.yml

25 lines
508 B
YAML
Raw Permalink Normal View History

2023-09-05 16:49:29 -05:00
name: 🌙 Nightly Release
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
permissions:
contents: write
jobs:
check-commits:
2023-09-08 16:52:09 -05:00
uses: daylinmorgan/actions/.github/workflows/check-commits.yml@main
with:
since: "24 hours"
2023-09-05 16:49:29 -05:00
build-artifacts:
needs: check-commits
if: ${{ needs.check-commits.outputs.quit != 'true' }}
2023-11-10 13:51:30 -06:00
uses: ./.github/workflows/build.yml
2023-09-05 16:49:29 -05:00
2023-09-08 16:52:09 -05:00
generate-release:
needs: build-artifacts
uses: daylinmorgan/actions/.github/workflows/nightly.yml@main