diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml new file mode 100644 index 0000000..acdfdcc --- /dev/null +++ b/.github/workflows/nightly-build.yml @@ -0,0 +1,13 @@ +name: Nightly Build +on: + schedule: + - cron: 00 00 * * * + +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Build and capture artifacts + uses: ./.github/actions/build