2023-09-04 23:24:13 -05:00
|
|
|
name: 🌙 Nightly Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 2 * * *'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-commits:
|
2023-09-15 00:37:19 -05:00
|
|
|
uses: daylinmorgan/actions/.github/workflows/check-commits.yml@main
|
|
|
|
with:
|
|
|
|
since: "24 hours"
|
2023-09-04 23:24:13 -05:00
|
|
|
|
|
|
|
build-artifacts:
|
|
|
|
needs: check-commits
|
|
|
|
if: ${{ needs.check-commits.outputs.quit != 'true' }}
|
2023-09-15 00:37:19 -05:00
|
|
|
uses: daylinmorgan/actions/.github/workflows/build-nim-forge.yml@main
|
2023-09-04 23:24:13 -05:00
|
|
|
|
2023-09-15 00:37:19 -05:00
|
|
|
generate-release:
|
|
|
|
needs: build-artifacts
|
|
|
|
uses: daylinmorgan/actions/.github/workflows/nightly.yml@main
|