Skip to content

Commit fbe4e0e

Browse files
committed
Test modified github workflow
1 parent 0c2d058 commit fbe4e0e

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

.github/workflows/docs.yml

+17-15
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
push:
99
branches: ["master", "dham/delete_dolfin_adjoint"]
1010

11+
pull:
12+
1113
# Allows you to run this workflow manually from the Actions tab
1214
workflow_dispatch:
1315

@@ -31,27 +33,27 @@ jobs:
3133
- uses: actions/checkout@v3
3234
- name: Install
3335
run: |
34-
python -m pip install -e '.[doc]'
36+
python -m pip install --user -e '.[doc]'
3537
- name: Setup Pages
3638
id: pages
3739
uses: actions/configure-pages@v3
3840
- name: Build with sphinx
3941
run: |
4042
cd docs
4143
make html
42-
- name: Upload artifact
43-
uses: actions/upload-pages-artifact@v2
44-
with:
45-
path: ./docs/build/html
44+
# - name: Upload artifact
45+
# uses: actions/upload-pages-artifact@v2
46+
# with:
47+
# path: ./docs/build/html
4648

4749
# Deployment job
48-
deploy:
49-
environment:
50-
name: github-pages
51-
url: ${{ steps.deployment.outputs.page_url }}
52-
runs-on: ubuntu-latest
53-
needs: build
54-
steps:
55-
- name: Deploy to GitHub Pages
56-
id: deployment
57-
uses: actions/deploy-pages@v2
50+
# deploy:
51+
# environment:
52+
# name: github-pages
53+
# url: ${{ steps.deployment.outputs.page_url }}
54+
# runs-on: ubuntu-latest
55+
# needs: build
56+
# steps:
57+
# - name: Deploy to GitHub Pages
58+
# id: deployment
59+
# uses: actions/deploy-pages@v2

0 commit comments

Comments
 (0)