Skip to content

Commit 8e0465b

Browse files
committed
Require the create datasets when deploying pages
1 parent 566fb9b commit 8e0465b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/deploy_pages.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ concurrency:
1717
cancel-in-progress: true
1818

1919
jobs:
20+
create-datasets:
21+
uses: ./.github/workflows/create_legacy_data.yml
22+
with:
23+
artifact_name: "legacy_mpich"
24+
25+
create-legacy-datasets:
26+
uses: ./.github/workflows/create_legacy_checkpoint.yml
27+
with:
28+
artifact_name: "legacy_checkpoint_mpich"
29+
2030
build-docs:
2131
uses: ./.github/workflows/build_docs.yml
2232
with:
@@ -28,7 +38,7 @@ jobs:
2838
dolfinx_tag: "stable"
2939

3040
deploy:
31-
needs: [build-docs, test-code]
41+
needs: [create-datasets, create-legacy-datasets, build-docs, test-code]
3242

3343
environment:
3444
name: github-pages

0 commit comments

Comments
 (0)