We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 696f77c + 039bc74 commit 50f2b17Copy full SHA for 50f2b17
.github/workflows/CI.yml
@@ -41,9 +41,9 @@ jobs:
41
run: |
42
mkdir libs winlibs
43
44
- wget https://luajit.org/download/LuaJIT-${{ env.luajit_ver }}.tar.gz
45
- tar xf LuaJIT-${{ env.luajit_ver }}.tar.gz
46
- cd LuaJIT-${{ env.luajit_ver }}
+ git clone https://luajit.org/git/luajit.git
+ cd luajit
+ git switch --detach tags/v${{ env.luajit_ver }}
47
make CROSS=i686-w64-mingw32- HOST_CC="gcc -m32" TARGET_SYS=Windows BUILDMODE=static
48
for f in lua.h luaconf.h lualib.h lauxlib.h; do
49
cp src/$f ../winlibs/
@@ -92,7 +92,7 @@ jobs:
92
strip artifact/instead-cli/instead-cli
93
94
- name: Publish Artifact
95
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
96
with:
97
name: instead-cli
98
path: artifact
0 commit comments