ci: refactor nightlies workflow + update go mod dependencies #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | ||
# 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: | ||
name: Build Images | ||
needs: simple-checks | ||
uses: ./.github/workflows/build-applications.yaml | ||
Check failure on line 29 in .github/workflows/nightlies-scheduled.yaml GitHub Actions / Scheduled NightliesInvalid workflow file
|
||
secrets: inherit | ||
permissions: | ||
contents: read | ||
packages: write | ||
with: | ||
# appsToBuild: ${{ inputs.appsToBuild }} | ||
appsToBuild: all | ||
publishArtifacts: true | ||
sendNotifications: true | ||
# render-readme: | ||
# name: Render Readme | ||
# needs: build-images | ||
# uses: ./.github/workflows/render-readme.yaml | ||
# secrets: inherit |