From 2771aa8f8932a636d8f4f1b5faf36dc4f949ad65 Mon Sep 17 00:00:00 2001 From: Linden <65407488+thelindat@users.noreply.github.com> Date: Sun, 3 Mar 2024 12:58:30 +1100 Subject: [PATCH] update codegen paths --- .github/workflows/codegen.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codegen.yml b/.github/workflows/codegen.yml index ebe16d5..4b18e13 100644 --- a/.github/workflows/codegen.yml +++ b/.github/workflows/codegen.yml @@ -16,15 +16,15 @@ jobs: - name: Generate natives run: | - wget https://github.com/thelindat/fivem-lua-natives/archive/master.zip -O repo.zip + wget https://github.com/thelindat/rage-lua-natives/archive/master.zip -O repo.zip unzip repo.zip - cd fivem-lua-natives-master - npm install - npm start + cd rage-lua-natives-master + pnpm i + pnpm start cd .. rm -rf library/natives/* - mv -f fivem-lua-natives-master/build/cfx/{CFX-NATIVE,GTAV,RDR3} library/natives/ - rm -rf fivem-lua-natives-master + mv -f rage-lua-natives-master/build/cfx/{CFX-NATIVE,GTAV,RDR3} library/natives/ + rm -rf rage-lua-natives-master rm repo.zip - name: Update repository