Skip to content

Commit

Permalink
Fix Github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aheejin committed May 23, 2024
1 parent 597baa6 commit 57cc4b1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
name: core-rendered
path: document/core/_build/html

build-legacy-exceptions-spec:
build-legacy-exception-handling-spec:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand All @@ -53,12 +53,12 @@ jobs:
- name: Setup Sphinx
run: pip install six && pip install sphinx==5.1.0
- name: Build main spec
run: cd document/legacy/exceptions && make main
run: cd document/legacy/exception-handling && make main
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: legacy-exceptions-rendered
path: document/legacy/exceptions/_build/html
name: legacy-exception-handling-rendered
path: document/legacy/exception-handling/_build/html

build-js-api-spec:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

publish-spec:
runs-on: ubuntu-latest
needs: [build-core-spec, build-legacy-exceptions-spec, build-js-api-spec, build-web-api-spec]
needs: [build-core-spec, build-legacy-exception-handling-spec, build-js-api-spec, build-web-api-spec]
steps:
- name: Checkout repo
uses: actions/checkout@v2
Expand All @@ -103,11 +103,11 @@ jobs:
with:
name: core-rendered
path: _output/core
- name: Download legacy exceptions spec artifact
- name: Download legacy exception-handling spec artifact
uses: actions/download-artifact@v2
with:
name: legacy-exceptions-rendered
path: _output/legacy/exceptions
name: legacy-exception-handling-rendered
path: _output/legacy/exception-handling
- name: Download JS API spec artifact
uses: actions/download-artifact@v2
with:
Expand Down

0 comments on commit 57cc4b1

Please sign in to comment.