-
Notifications
You must be signed in to change notification settings - Fork 17
Use MultiDocumenter.jl #43
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
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
eb24cc1
Removing hosting of other packages' docs
abhro 7459aed
Add docs site link for AstroAngles.jl
abhro ef85786
Update assets link
abhro e1ffaca
Add GitHub token secret to docs CI
abhro d03a0f4
Merge remote-tracking branch 'origin/rm-hosted-copies' into source
abhro 2c6cdd7
first pass at multidocs
icweaver c627f09
src different than dst
icweaver 4e402bd
trying deploy
icweaver 0f6b853
split workflow steps
icweaver c7f4072
instantiate
icweaver 777694d
going back to docdeploy action
icweaver d90ac6f
no orphans
icweaver 2efcffe
try deploydocs directly
icweaver 89b6c34
update branches and switch deploy method
icweaver b6c6915
back to deploydocs
icweaver 44338f2
back to manual deploy
icweaver 430b814
typo?
icweaver 39fd960
whitespace
icweaver d562e7b
specify branch
icweaver 07daec8
cleanup
icweaver 8a9eefc
Use shell option for workflow yml
abhro fefd672
Use julia color option for docs/make.jl workflow step
abhro 24f81f3
Add favicon to Documenter.HTML() assets
abhro 7043e22
Add versions keyword to deploydocs()
abhro 5be9729
Trying updated search path
icweaver 98cbe98
trying temporary PR preview root for universal search functionality
icweaver f197c0e
fix search path
icweaver 0e830bd
enabled sitemap again
icweaver fcd3307
typo
icweaver 18fc0d7
Change devbranch in deploydocs back to source
abhro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,24 @@ on: | |
- cron: '15 2 * * *' # 2:15 AM UTC every day | ||
jobs: | ||
docs: | ||
name: Documentation | ||
name: MultiDocumentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: "1" | ||
- uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-docdeploy@v1 | ||
- name: Install dependencies | ||
shell: julia --color=yes --project=docs {0} | ||
run: | | ||
using Pkg | ||
Pkg.instantiate() | ||
- name: Aggregate and deploy | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
julia --color=yes --project=docs docs/make.jl --deploy | ||
env: | ||
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bit is all manual and gross for now just to stand things up, and can be replaced by something like #44 if we end up wanting to go the "single source of truth" route discussed there