Skip to content

Commit abe3bd3

Browse files
committed
make sure the build output's name is nattlua.lua instead of build_output.lua
1 parent b14ce56 commit abe3bd3

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,13 @@ jobs:
2525
- name: Build nattlua
2626
run: |
2727
nix develop --command bash -c "luajit nattlua.lua build"
28+
# Rename to nattlua.lua
29+
rm nattlua.lua # remove the original nattlua.lua file first
30+
mv build_output.lua nattlua.lua
31+
2832
2933
- name: Upload nattlua.lua
3034
uses: actions/upload-artifact@v4
3135
with:
3236
name: nattlua
33-
path: build_output.lua
37+
path: nattlua.lua

0 commit comments

Comments
 (0)