Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Fix CI release documentation github action #3843

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 7 additions & 14 deletions .github/workflows/full_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@ jobs:
# testenv\Scripts\Activate.ps1
# .\doc\make.bat pdf

# TODO: update upload action once path exclusion is implemented (if ever)
# see https://github.com/actions/upload-pages-artifact/issues/33
- name: Remove files to not upload
run: |
echo "Removing files not wanted in the uploaded artifact"
Remove-Item doc/_build/html/.doctrees -Recurse -Force

- name: Upload HTML documentation artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -92,20 +99,6 @@ jobs:
path: doc/_build/html/EDBAPI
retention-days: 7

# - name: Upload PDF documentation artifact
# uses: actions/upload-artifact@v3
# with:
# name: documentation-pdf
# path: doc/_build/pdf
# retention-days: 7

# - name: Release
# uses: softprops/action-gh-release@v1
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
# with:
# generate_release_notes: true
# files: |
# doc/_build/pdf

doc-deploy-stable:
name: Deploy stable documentation
Expand Down
Loading