From 3cb69de70f4afb4a139dab94cd603a60114feb2a Mon Sep 17 00:00:00 2001 From: Spencer Perkins <95900100+SpecialThing44@users.noreply.github.com> Date: Tue, 6 May 2025 12:49:05 -0400 Subject: [PATCH] Draft --- .../.github/workflows/release.yml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 community/cypher/planner-spi-3.5/.github/workflows/release.yml diff --git a/community/cypher/planner-spi-3.5/.github/workflows/release.yml b/community/cypher/planner-spi-3.5/.github/workflows/release.yml new file mode 100644 index 00000000000..73b4fab1fa2 --- /dev/null +++ b/community/cypher/planner-spi-3.5/.github/workflows/release.yml @@ -0,0 +1,34 @@ +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Java CI with Maven + +on: + workflow_dispatch: + inputs: + release: + description: 'Release version' + required: true + tag: + description: 'Tag name' + required: true + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 8 + uses: actions/setup-java@v4 + with: + java-version: '8' + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn clean install -Pgraphfoundation,release-public -DfullBuild -Drevapi.skip=true -DcreateChecksum=true -Duser.name=graphfoundation \ No newline at end of file