From fc24c5f2f17f2e4ecd6cb44c91ed76a723107983 Mon Sep 17 00:00:00 2001 From: GedMarc Date: Sun, 25 Feb 2024 21:22:47 +0200 Subject: [PATCH] Entity Assist Cleanup and Build Start --- .github/workflows/build.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fd5cd48..dc55e59 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,6 +1,11 @@ name: Entity Assist Build on: workflow_dispatch: + inputs: + centralRelease: + type: boolean + description: Run a release to maven central + default: false push: permissions: contents: read @@ -14,7 +19,7 @@ jobs: with: baseDir: 'core/' name: 'Entity Assist Core' - publishToCentral: true + publishToCentral: ${{inputs.centralRelease}} secrets: USERNAME: ${{secrets.USERNAME}} USER_TOKEN: ${{secrets.USER_TOKEN}}