From e12d36beb837addc62a0332b2777289d0860df61 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Sun, 15 Sep 2024 15:47:09 +0200 Subject: [PATCH] :package: added fxmanifestPath parameter to esx_hud simple release file https://github.com/esx-framework/.github/issues/2 --- .github/workflows/simple-release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/simple-release.yml b/.github/workflows/simple-release.yml index b3b2aed..edce1dd 100644 --- a/.github/workflows/simple-release.yml +++ b/.github/workflows/simple-release.yml @@ -19,7 +19,10 @@ on: type: string description: Separate the files or folders that you do not want to see in the release with a comma. required: false - + fxmanifestPath: + type: string + description: Specify fxmanifest path if fxmanifest is not in the root folder. + required: false jobs: simple-create-release: uses: esx-framework/.github/.github/workflows/simple-release.yml@main @@ -28,3 +31,4 @@ jobs: web: ${{ github.event.inputs.web }} versionNumber: ${{ github.event.inputs.versionNumber }} excludeOptions: ${{ github.event.inputs.excludeOptions }} + fxmanifestPath: ${{ github.events.inputs.fxmanifestPath || '**/**/fxmanifest.lua' }}