Skip to content

Commit 99a9193

Browse files
committed
ci: Fix reference between jobs in GitHub Pages workflow
The `publish` job previously declared a dependency on a job named `build-web` but that job is actually called `build`. https://phabricator.endlessm.com/T35699
1 parent a15c670 commit 99a9193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
publish:
6969
name: Publish to GitHub Pages
7070
needs:
71-
- build-web
71+
- build
7272
runs-on: ubuntu-latest
7373
steps:
7474
- id: deploy

0 commit comments

Comments
 (0)