From 29273224697d0da8b5ccf3f3a1485d43f0875c69 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Tue, 16 Jan 2024 23:23:59 +0100 Subject: [PATCH] Create simple-release.yml --- .github/workflows/simple-release.yml | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/simple-release.yml diff --git a/.github/workflows/simple-release.yml b/.github/workflows/simple-release.yml new file mode 100644 index 00000000..8b642e35 --- /dev/null +++ b/.github/workflows/simple-release.yml @@ -0,0 +1,30 @@ +name: Simple Release + +on: + workflow_dispatch: + inputs: + versionNumber: + description: 'Version Number' + required: false + default: '' + zipName: + description: 'Zip Name' + required: true + default: 'esx_core' + web: + description: 'Web' + required: false + default: 'false' + excludeOptions: + type: string + description: Separate the files or folders that you do not want to see in the release with a comma. + required: false + +jobs: + simple-create-release: + uses: esx-framework/.github/.github/workflows/simple-release.yml@main + with: + zipName: ${{ github.event.inputs.zipName }} + web: ${{ github.event.inputs.web }} + versionNumber: ${{ github.event.inputs.versionNumber }} + excludeOptions: ${{ github.event.inputs.excludeOptions }}