We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b14ce56 commit abe3bd3Copy full SHA for abe3bd3
1 file changed
.github/workflows/build.yml
@@ -25,9 +25,13 @@ jobs:
25
- name: Build nattlua
26
run: |
27
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
+
32
33
- name: Upload nattlua.lua
34
uses: actions/upload-artifact@v4
35
with:
36
name: nattlua
- path: build_output.lua
37
+ path: nattlua.lua
0 commit comments