Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/workflows/snapshot_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,5 @@ jobs:
run: |
echo "Deploying to https://maven.pkg.github.com/${REPO} with revision ${REVISION}"
mvn deploy -DskipTests \
-Dgithub.repo.url="https://maven.pkg.github.com/${REPO}"
-Dgithub.repo.url="https://maven.pkg.github.com/${REPO}" \
-DskipNexusStagingDeployMojo=true
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extends PageNodeExtractor
{
private val language = context.language

private val replaceString = DisambiguationExtractorConfig.disambiguationTitlePartMap(language.wikiCode)
private val replaceString = DisambiguationExtractorConfig.disambiguationTitlePartMap.getOrElse(language.wikiCode, " (disambiguation)")

val wikiPageDisambiguatesProperty = context.ontology.properties("wikiPageDisambiguates")

Expand Down
Loading