diff --git a/.github/workflows/compile-plugin-on-push.yml b/.github/workflows/compile-plugin-on-push.yml index 6381fbb..1f2d9dc 100644 --- a/.github/workflows/compile-plugin-on-push.yml +++ b/.github/workflows/compile-plugin-on-push.yml @@ -24,8 +24,8 @@ jobs: - name: Create plugins directory run: mkdir plugins - - run: spcomp -i scripting/includes scripting/deathmatch.sp -o plugins/deathmatch.smx - - run: spcomp -i scripting/includes scripting/deathmatch_loader.sp -o plugins/deathmatch_loader.smx + - run: spcomp -i scripting/include scripting/deathmatch.sp -o plugins/deathmatch.smx + - run: spcomp -i scripting/include scripting/deathmatch_loader.sp -o plugins/deathmatch_loader.smx - name: Prepare files for artifact run: | diff --git a/.github/workflows/create-release-on-tag.yml b/.github/workflows/create-release-on-tag.yml index 0c4475f..ad30ec4 100644 --- a/.github/workflows/create-release-on-tag.yml +++ b/.github/workflows/create-release-on-tag.yml @@ -51,9 +51,9 @@ jobs: - name: Create plugins directory run: mkdir -p plugins - - run: spcomp -i ./scripting/includes ./scripting/deathmatch.sp -o ./plugins/deathmatch.smx + - run: spcomp -i ./scripting/include ./scripting/deathmatch.sp -o ./plugins/deathmatch.smx - - run: spcomp -i ./scripting/includes ./scripting/deathmatch_loader.sp -o ./plugins/deathmatch_loader.smx + - run: spcomp -i ./scripting/include ./scripting/deathmatch_loader.sp -o ./plugins/deathmatch_loader.smx - name: Prepare files for artifact run: |