Skip to content

Commit a82af16

Browse files
committed
fuck env
1 parent c5ca7f3 commit a82af16

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/build-lua.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ jobs:
99
build-lua:
1010
name: Build Lua in Steam Runtime
1111
runs-on: ubuntu-latest
12-
env:
13-
LUA_VERSION: 5.4.6
1412
steps:
1513
- name: Build in Steam Runtime container
1614
uses: addnab/docker-run-action@v3
@@ -27,7 +25,7 @@ jobs:
2725
cd "$WORKDIR"
2826
2927
# Download with proper error checking
30-
curl -fsSL "https://www.lua.org/ftp/lua-${LUA_VERSION}.tar.gz" --output lua.tar.gz
28+
curl -fsSL "https://www.lua.org/ftp/lua-5.4.6.tar.gz" --output lua.tar.gz
3129
3230
# Verify download
3331
if [ ! -s lua.tar.gz ]; then
@@ -37,12 +35,12 @@ jobs:
3735
3836
# Extract with verification
3937
tar xf lua.tar.gz
40-
if [ ! -d "lua-${LUA_VERSION}" ]; then
38+
if [ ! -d "lua-5.4.6" ]; then
4139
echo "Extraction failed"
4240
exit 1
4341
fi
4442
45-
cd "lua-${LUA_VERSION}"
43+
cd "lua-5.4.6"
4644
make clean
4745
make MYCFLAGS="-fPIC" MYLDFLAGS="-shared" linux
4846

0 commit comments

Comments
 (0)