Skip to content

Nightly Build

Nightly Build #22

Workflow file for this run

name: Nightly Build
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
tag-nightly:
runs-on: ubuntu-latest
name: "Update Nightly Tag"
steps:
- name: Create or update tag
uses: actions/github-script@v7
with:
script: |
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/nightly',
sha: context.sha
})