Skip to content

Commit

Permalink
Chain workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Aug 22, 2024
1 parent 662ba57 commit 6813e7d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,23 @@ jobs:
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
inputfile: index-part1.md
autorelease: false

upload:
needs: [fullbook, partone]
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"

0 comments on commit 6813e7d

Please sign in to comment.