diff options
Diffstat (limited to '.github/workflows/compile-check.yml')
-rw-r--r-- | .github/workflows/compile-check.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/compile-check.yml b/.github/workflows/compile-check.yml index b62c8313..cb7ab1d0 100644 --- a/.github/workflows/compile-check.yml +++ b/.github/workflows/compile-check.yml @@ -13,17 +13,18 @@ jobs: path: "mods" - name: Compile Scripts - uses: ASpoonPlaysGames/squirrel-re-compiler@v2 + uses: ASpoonPlaysGames/squirrel-re-compiler@v3 with: mods-directory: "${{ github.workspace }}/mods" native-json: "${{ github.workspace }}/mods/.github/nativefuncs.json" + # It's important that scripts compile when Northstar.Custom isn't enabled/installed, so run again without it - name: Remove Northstar.Custom run: rmdir ${{ github.workspace }}\mods\Northstar.Custom /s /q shell: cmd - name: Compile Scripts (No Northstar.Custom) - uses: ASpoonPlaysGames/squirrel-re-compiler@v2 + uses: ASpoonPlaysGames/squirrel-re-compiler@v3 with: mods-directory: "${{ github.workspace }}/mods" native-json: "${{ github.workspace }}/mods/.github/nativefuncs.json" |