Skip to content

Build Daily

Build Daily #69

Workflow file for this run

name: Build Daily
on:
workflow_dispatch:
schedule:
# Run daily at 7:30 AM UTC
- cron: '30 7 * * *'
permissions:
contents: read
jobs:
common:
uses: ./.github/workflows/build-common.yml
with:
no-build-cache: true
secrets:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}

Check failure on line 18 in .github/workflows/build-daily.yml

View workflow run for this annotation

GitHub Actions / Build Daily

Invalid workflow file

The workflow is not valid. .github/workflows/build-daily.yml (Line: 18, Col: 30): Invalid secret, DEVELOCITY_ACCESS_KEY is not defined in the referenced workflow.
link-check:
uses: ./.github/workflows/reusable-link-check.yml
workflow-notification:
permissions:
contents: read
issues: write
if: always()
needs:
- common
- link-check
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: >-
${{
needs.common.result == 'success' &&
needs.link-check.result == 'success'
}}