Skip to content

Commit

Permalink
fix(ci): broken Maven invocations with a settings.xml file (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge authored Jan 24, 2025
1 parent 5eca19b commit b828294
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/render-documentation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euo pipefail
IFS=$'\n\t'

./mvnw package javadoc:aggregate -DskipTests
./mvnw -s .github/maven-ci-settings.xml -B package javadoc:aggregate -DskipTests
cp -R target/reports/apidocs docs/

PROJECT_VERSION=$(cat .github/project.yml | yq eval '.release.current-version' -)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
git config --global user.name "SmallRye CI"
git config --global user.email "smallrye@googlegroups.com"
- name: Build local artifacts
run: mvn -s .build/maven-ci-settings.xml -B install -DskipTests
run: mvn -s .github/maven-ci-settings.xml -B install -DskipTests
- name: Render docs and publish
run: .github/scripts/render-documentation.sh

0 comments on commit b828294

Please sign in to comment.