From 5f94a998489b54cf3a084c203d2e2b980200fb9a Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Sun, 15 Sep 2024 15:38:13 +0200 Subject: [PATCH] :package: Added custom path for fxmanifest in simple release fixes: #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 37bb1a5..0a7f933 100644 --- a/.github/workflows/simple-release.yml +++ b/.github/workflows/simple-release.yml @@ -23,6 +23,10 @@ on: type: string description: Specify true or false if you want to create a new branch. required: false + fxmanifestPath: + type: string + description: Specify fxmanifest path if fxmanifest is not in the root folder. + required: false jobs: create-release: name: Build and Create Tagged release @@ -121,7 +125,7 @@ jobs: - name: Push manifest change uses: EndBug/add-and-commit@v8 with: - add: '**/fxmanifest.lua' + add: ${{ inputs.fxmanifestPath || '**/fxmanifest.lua' }} push: true author_name: Manifest Bumper author_email: 41898282+github-actions[bot]@users.noreply.github.com