diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2023-03-29 00:00:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 01:00:42 +0200 |
commit | ec992d12ff07db58a6417671a23065ad774c96e1 (patch) | |
tree | be7fa92cc2160b04592c6bc2c3507cc66599ad96 | |
parent | 4d8e3698102d545b7d2bbd3f41506362a7cddc28 (diff) | |
download | NorthstarMods-ec992d12ff07db58a6417671a23065ad774c96e1.tar.gz NorthstarMods-ec992d12ff07db58a6417671a23065ad774c96e1.zip |
Bump compile check version to v3 (#603)
Adds initscript support
-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" |