Skip to content

Nightly Build

Nightly Build #27

Workflow file for this run

name: Nightly Build
on:
workflow_dispatch:
inputs:
version:
description: Semantic Version string to use for this nightly build. It should ends with `-SNAPSHOT`. If not, please take a look at the release workflow.
required: false
schedule:
- cron: "0 3 * * *" # run at 03:00 UTC
jobs:
Run-Tests:
uses: ./.github/workflows/verify.yaml
secrets: inherit
Publish:
if: always()
needs: [ Run-Tests ]
uses: eclipse-edc/.github/.github/workflows/technology-nightly.yml@main
secrets: inherit
with:
version: ${{ inputs.version }}