Skip to content

nightly

nightly #11

Workflow file for this run

name: nightly
on:
schedule:
- cron: "0 6 * * *"
# triggered manually
workflow_dispatch:
inputs:
version:
description: "Version to build"
type: string
default: now
jobs:
checkout:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "recursive"
build:
needs: [checkout]
uses: ./.github/workflows/build.yml

Check failure on line 22 in .github/workflows/nightly.yaml

View workflow run for this annotation

GitHub Actions / nightly

Invalid workflow file

error parsing called workflow ".github/workflows/nightly.yaml" -> "./.github/workflows/build.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
version: ${{ inputs.version || 'now' }}
upload_oci:
name: Run glcli to publish to OCI
needs: [ build ]
uses: ./.github/workflows/upload_oci.yml
with:
version: ${{ needs.build.outputs.version }}