From 1ff77cc56e5ebaa78abc6c8946385afe5d7dcb63 Mon Sep 17 00:00:00 2001 From: Stefano Sinatti Date: Fri, 29 Sep 2023 10:52:06 +0200 Subject: [PATCH] Add CI --- .github/workflows/compile.yml | 7 +++++++ .github/workflows/release.yml | 14 ++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .github/workflows/compile.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000..bde4606 --- /dev/null +++ b/.github/workflows/compile.yml @@ -0,0 +1,7 @@ +name: Maven Compile +on: push +jobs: + compile: + uses: RegioneER/parer-github-template/.github/workflows/compile.yml@v1 + with: + java: '8' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..5b0c6f9 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,14 @@ +name: Maven Release +on: + workflow_dispatch: + inputs: + version: + description: "Version number" + required: true + type: string +jobs: + release: + uses: RegioneER/parer-github-template/.github/workflows/release.yml@v1 + with: + version: ${{ inputs.version }} + java: '8'