Skip to content

Chain workflows

Chain workflows #123

Workflow file for this run

name: Book generation
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 0 * * 0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
fullbook:
uses: SquareBracketAssociates/BookBuilderDashboard/.github/workflows/main.yml@newVersionOfPillar
with:
bookname: vm-wip
inputfile: index.md
autorelease: false
partone:
uses: SquareBracketAssociates/BookBuilderDashboard/.github/workflows/main.yml@newVersionOfPillar
with:
bookname: vm-wip-part1
inputfile: index-part1.md
autorelease: false
upload:
needs: [fullbook, partone]

Check failure on line 30 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Book generation

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 30, Col: 5): Required property is missing: runs-on
steps:
- uses: actions/download-artifact@v4
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: "*.pdf"