-
Notifications
You must be signed in to change notification settings - Fork 18
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
Fix nightly build by updating branch name from "dev" to "main" #797
Conversation
I manually triggered a nightly build on my fork to run against this PR branch: https://github.com/jdblischak/TileDB-R/actions/runs/12676759606 |
Yes please, and if you don't, I can FYI we found out it needs to be |
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.
🚢
Or @mojaveazure was it the other way around? From our internal release procedure it seems so ... |
Building documentation should be $ Rscript -e 'pkgdown::build_site'
function (pkg = ".", examples = TRUE, run_dont_run = FALSE, seed = 1014L,
lazy = FALSE, override = list(), preview = NA, devel = FALSE,
new_process = !devel, install = !devel)
{
pkg <- as_pkgdown(pkg, override = override)
check_bool(devel)
check_bool(new_process)
check_bool(install)
if (install) {
withr::local_temp_libpaths()
cli::cli_rule("Installing package {.pkg {pkg$package}} into temporary library")
withr::with_options(list(keep.source.pkgs = TRUE, keep.parse.data.pkgs = TRUE),
utils::install.packages(pkg$src_path, repos = NULL,
type = "source", quiet = TRUE))
}
if (new_process) {
build_site_external(pkg = pkg, examples = examples, run_dont_run = run_dont_run,
seed = seed, lazy = lazy, override = override, preview = preview,
devel = devel)
}
else {
build_site_local(pkg = pkg, examples = examples, run_dont_run = run_dont_run,
seed = seed, lazy = lazy, override = override, preview = preview,
devel = devel)
}
}
<bytecode: 0x559da6add3c0>
<environment: namespace:pkgdown> Also, we should consider moving the pkgdown process and docs to separate workflows and to deploy from either a |
Yes, I didn't rebuild it on purpose. Initially, I thought it should be auto deployed via gh pages...on the wild you will come across dev and prod pkddown deployments. |
@mojaveazure I corrected my typo above w/ the missing In any case -- the question is whether to use |
|
That shouldn't matter as unlike |
@mojaveazure I recall specifically we had a discussion that one way was better than the other, & it was you that told me this :) Let me search GitHub history & sync up with you in Slack |
To close the loop here publicly: It turns out I was remembering something about |
Done in #799
Agreed. I added my thoughts in #798 (comment) Happy to assist |
Closes #791
Follow-up to #789
cc: @ihnorton, @johnkerl
What is the plan for rebuilding the documentation? Similar to the update from @cgiachalis in #794, the updates to
_pkgdown.yml
and vignette.Rmd
files will not be reflected indocs/
until they are rebuilt. Can I send a follow-up PR to rebuild them?