Skip to content

Check for updates

Check for updates #36

Workflow file for this run

name: Check for updates
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
release-check:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
outputs:
run_nightly_build: ${{ steps.check.outputs.different_hash }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Check if there was a nightly build for the latest commit
id: check
run: |
set -e
[ "$(git rev-parse nightly)" == "$(git rev-parse HEAD~0)" ] || echo "different_hash=true" >> $GITHUB_OUTPUT
run-nightly-build:
needs: release-check
if: needs.release-check.outputs.run_nightly_build
runs-on: ubuntu-latest
steps:
- uses: peter-evans/repository-dispatch@v3
with:
event-type: nightly-trigger