From 363d7f9c5e2f3f6ee7d9d00de84c16a233a58391 Mon Sep 17 00:00:00 2001 From: Tad Hunt Date: Mon, 11 Sep 2023 09:58:29 -0600 Subject: [PATCH] Add github action to build the plugin --- .github/workflows/build.yml | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4efbe2e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,40 @@ +name: build + +on: + workflow_dispatch: + push: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: 'Checkout source code' + uses: actions/checkout@v4 + - name: 'Set up JDK' + uses: actions/setup-java@v3 + with: + java-version: '16' + distribution: 'adopt' + + - name: 'Cache dependencies' + uses: actions/cache@v3 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + + - name: 'Build, test, and package' + run: mvn -B package --file pom.xml + + - name: 'Get artifact version' + id: pomVersion + run: | + VERSION=$( mvn help:evaluate -Dexpression=project.version -q -DforceStdout ) + echo "::set-output name=version::$VERSION" + + - name: 'Upload artifact' + uses: actions/upload-artifact@v3 + with: + name: RealEstate-${{ steps.pomVersion.outputs.version }}.jar + path: target/RealEstate-${{ steps.pomVersion.outputs.version }}.jar