We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18b3dd commit 6fb6207Copy full SHA for 6fb6207
.github/workflows/deploy.yml
@@ -14,10 +14,7 @@ concurrency:
14
cancel-in-progress: true
15
16
jobs:
17
- deploy:
18
- environment:
19
- name: main
20
- url: ${{ steps.deployment.outputs.page_url }}
+ build:
21
name: Build Documentation
22
runs-on: ubuntu-latest
23
steps:
@@ -30,8 +27,15 @@ jobs:
30
27
- name: Upload documentation artifact
31
28
uses: actions/upload-artifact@v3
32
29
with:
33
- name: documentation
34
path: _build/html/
+ deploy:
+ name: Deploy Documentation
+ needs: build
+ runs-on: ubuntu-latest
35
+ environment:
36
+ name: main
37
+ url: ${{ steps.deployment.outputs.page_url }}
38
+ steps:
39
- name: Deploy to GitHub Pages
40
id: deployment
41
uses: actions/deploy-pages@v1
0 commit comments