Skip to content

Daily Build

Daily Build #49

Workflow file for this run

name: Daily Build
on:
# run daily at 8:30am
schedule:
- cron: '30 8 * * *'
# allow manual runs
workflow_dispatch:
# implicitely set all other permissions to none
permissions:
checks: write # test.yml
contents: read # debos.yml test.yml
packages: read # test.yml
pull-requests: write # test.yml
jobs:
build-daily:
# don't run cron from forks of the main repository or from other branches
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/debos.yml
test-daily:
# don't run cron from forks of the main repository or from other branches
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/test.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/build-daily.yml

Invalid workflow file

error parsing called workflow ".github/workflows/build-daily.yml" -> "./.github/workflows/test.yml" (source branch with sha:c9f4958fcd60169c21abb945b996fdffc88a94ae) : every step must define a `uses` or `run` key
needs: build-daily
secrets: inherit
with:
url: ${{ needs.build-daily.outputs.artifacts_url }}