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'