Skip to content

ci: refactor nightlies workflow + update go mod dependencies #34

ci: refactor nightlies workflow + update go mod dependencies

ci: refactor nightlies workflow + update go mod dependencies #34

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Scheduled Nightlies
concurrency:
group: nightlies
cancel-in-progress: false
on:
workflow_dispatch:
inputs:
appsToBuild:
description: App(s) to build
required: false
type: string
default: all
schedule:
- cron: "0 0 * * *"
pull_request:
jobs:
# simple-checks:
# name: Simple Checks
# uses: ./.github/workflows/simple-checks.yaml
build-images:

Check failure on line 26 in .github/workflows/nightlies-scheduled.yaml

View workflow run for this annotation

GitHub Actions / Scheduled Nightlies

Invalid workflow file

The workflow is not valid. .github/workflows/nightlies-scheduled.yaml (Line: 26, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build Images
needs: simple-checks
uses: ./.github/workflows/build-applications.yaml
secrets: inherit
permissions:
contents: read
packages: write
with:
# appsToBuild: ${{ inputs.appsToBuild }}
appsToBuild: all
sendNotifications: true
# render-readme:
# name: Render Readme
# needs: build-images
# uses: ./.github/workflows/render-readme.yaml
# secrets: inherit