Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

runs-on: ubuntu-latest

needs: build
needs: [build, build-docs]

steps:
- uses: actions/checkout@v6
Expand All @@ -60,6 +60,12 @@ jobs:
name: artifacts-ubuntu-latest
path: artifacts

- name: Download Documentation
uses: actions/download-artifact@v7
with:
name: documentation
path: artifacts

- name: Clean Artifacts
shell: bash
run: rm -rf artifacts/test
Expand Down