Skip to content

Commit

Permalink
hotfix change fxmanifest path
Browse files Browse the repository at this point in the history
  • Loading branch information
Gellipapa authored Jan 24, 2024
1 parent c7a6575 commit 505229c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/bump-manifest-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require("fs");
const version = process.env.TGT_RELEASE_VERSION;
const newVersion = version.replace("v", "");

const manifestFile = fs.readFileSync("fxmanifest.lua", { encoding: "utf8" });
const manifestFile = fs.readFileSync("[core]/es_extended/fxmanifest.lua", { encoding: "utf8" });

const newFileContent = manifestFile.replace(/\bversion\s+(.*)$/gm, `version '${newVersion}'`);

Expand Down

0 comments on commit 505229c

Please sign in to comment.