Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ val docTheme =
"unidata-jekyll-docs:${catalogs.named("libs").findVersion("unidata-doc-theme").get().requiredVersion}"

val isGitHub = System.getenv("GITHUB_ACTIONS") != null
val imageBaseUrl = if (isGitHub) "ghcr.io/unidata" else "docker.unidata.ucar.edu"
val imageBaseUrl = if (isGitHub) "ghcr.io/unidata" else "docker.io/unidata"
val dockerImage = "${imageBaseUrl}/${docTheme}"

val siteBuildDir = layout.buildDirectory.dir("site")
Expand Down
4 changes: 2 additions & 2 deletions project-files/jenkins/pipelines/docs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ pipeline {
-e DOCS_UID=$(id -u) \
-v .:/netcdf-java \
-v ./docs/build/site:/site \
docker.unidata.ucar.edu/unidata-jekyll-docs:0.0.6 build
docker.io/unidata/unidata-jekyll-docs:0.0.6 build
'''
}
}
stage('Publish documentation') {
agent {
docker {
image 'docker.unidata.ucar.edu/thredds-test-environment:latest'
image 'docker.io/unidata/thredds-test-environment:latest'
// Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely:
Expand Down
Loading