Skip to content

Commit 77617d8

Browse files
committed
Fix website deployment workflow to use plain mvn command
Replace './mvnw' with 'mvn' in deploy-website.yml since mvnw script was removed. The workflow already sets up Maven with Java 21 and caching, so plain mvn works. This fixes the website deployment failure and prepares for eventual transition to './mvx website build' in the future.
1 parent c2c7041 commit 77617d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
echo "SITE_URL=$SITE_URL" >> $GITHUB_ENV
4141
echo "SITE_PATH=$SITE_PATH" >> $GITHUB_ENV
4242
echo "GITHUB_REPOSITORY=$GITHUB_REPOSITORY SITE_DIR=$SITE_DIR SITE_URL=$SITE_URL SITE_PATH=$SITE_PATH"
43-
QUARKUS_ROQ_GENERATOR_BATCH=true ./mvnw -f website clean package quarkus:run \
43+
QUARKUS_ROQ_GENERATOR_BATCH=true mvn -f website clean package quarkus:run \
4444
-DskipTests -Pinclude-javadocs \
4545
-Dquarkus.http.root-path=$SITE_PATH \
4646
-Dsite.url=$SITE_URL

0 commit comments

Comments
 (0)