From 1def35d802bd06ffc0be6470e3454da698e67b78 Mon Sep 17 00:00:00 2001 From: Ayush Saxena Date: Tue, 14 Feb 2023 11:05:41 +0530 Subject: [PATCH] HADOOP-18524. Addendum: Deploy Hadoop trunk version website. (#5389). Contributed by Ayush Saxena. Reviewed-by: Vinayakumar B --- .github/workflows/website.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index b55f37ca544..6d925f3dcff 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -41,8 +41,12 @@ jobs: key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- + - name: Build Hadoop maven plugins + run: cd hadoop-maven-plugins && mvn --batch-mode install - name: Build Hadoop - run: mvn clean install site -DskipTests -DskipShade + run: mvn clean install -DskipTests -DskipShade + - name: Build document + run: mvn clean site - name: Stage document run: mvn site:stage -DstagingDirectory=${GITHUB_WORKSPACE}/staging/ - name: Deploy to GitHub Pages