Skip to content

nightly

nightly #40

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
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 }}