From 49041007d0bcb3eb5ce28816ca224e4d9f9b033d Mon Sep 17 00:00:00 2001 From: dxfeng10 Date: Sun, 25 Apr 2021 10:38:02 +0800 Subject: [PATCH] update maven build workflow --- .github/workflows/maven.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4b2bf32..138d410 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -33,8 +33,10 @@ jobs: uses: actions/setup-java@v1 with: java-version: 1.8 - - name: Build with Maven + - name: Build Modules run: mvn -B clean package --file pom.xml + - name: Build Bootstrap + run: mvn -B clean package --file fizz-bootstrap/pom.xml - uses: bhowell2/github-substring-action@v1.0.0 if: startsWith(github.ref, 'refs/tags/') id: releaseVersion @@ -59,4 +61,4 @@ jobs: draft: true files: ./fizz-gateway-community-${{ steps.releaseVersion.outputs.substring }}.zip env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}