Skip to content

Commit

Permalink
gh: Make release workflow depend on test suite workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jezurko committed Feb 27, 2024
1 parent 0425535 commit 58d424b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: "Pre Release"

on:
workflow_run:
workflows: ["Build"]
workflows: ["LLVM test suite"]
types:
- completed
branches:
Expand Down Expand Up @@ -69,6 +69,13 @@ jobs:
- name: Build VAST Doc
run: cmake --build --preset ninja-rel --target vast-doc

- name: Fetch LLVM test suite results
uses: actions/download-artifact@v4
with:
name: final-result
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}

- name: Build Pages
run: |
Expand Down

0 comments on commit 58d424b

Please sign in to comment.