Skip to content

Commit 7cc103c

Browse files
committed
WIP: debugging page deployement x1
1 parent 200e2a6 commit 7cc103c

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

.github/workflows/documentation.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -111,22 +111,23 @@ jobs:
111111
path: ${{ github.workspace }}/_build
112112

113113

114+
page-deployement:
115+
runs-on: ubuntu-latest
116+
needs: build-docs
114117

118+
steps:
119+
- name: Checkout repository
120+
uses: actions/checkout@v4
115121

122+
- name: Download sphinx docs
123+
uses: actions/download-artifact@v2
124+
with:
125+
name: __build_sphx_docs__
126+
path: ${{github.workspace}}/_build
116127

117-
118-
119-
120-
121-
122-
# page-deployement:
123-
# runs-on: windows-latest
124-
## FIXME: we should replace this with the action to deploy to gh-pages
125-
# - name: Deploy to GitHub Pages
126-
# uses: peaceiris/actions-gh-pages@v3
127-
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
128-
# with:
129-
# publish_branch: gh-pages
130-
# github_token: ${{ secrets.GITHUB_TOKEN }}
131-
# publish_dir: _build/
132-
# force_orphan: true
128+
# TODO: debug
129+
- name: Debug
130+
run: |
131+
ls -la ${{github.workspace}}
132+
ls -la ${{github.workspace}}/_build
133+
ls -la ${{github.workspace}}/_build/html

0 commit comments

Comments
 (0)