From 6e13158598b26691a6b00c2416efd7c84b1d1936 Mon Sep 17 00:00:00 2001 From: juadde Date: Mon, 18 Dec 2023 10:40:16 +0100 Subject: [PATCH] See artifact content --- .github/workflows/luabitop_compilation.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/luabitop_compilation.yml b/.github/workflows/luabitop_compilation.yml index 3e5f2d6..79f3d45 100644 --- a/.github/workflows/luabitop_compilation.yml +++ b/.github/workflows/luabitop_compilation.yml @@ -56,6 +56,8 @@ jobs: run: cp lua\src\* dll - name: Compile run: cd dll && mingw32-make -f Makefile.mingw + - name: Copy Lua Source code to build directory + run: cp dll/bit.dll bit.dll ## Archive dll for download - name: Archive DLL as artifact @@ -63,7 +65,7 @@ jobs: with: name: LuaBitOp-DLL path: | - dll/bit.dll + bit.dll LICENSE README.md if-no-files-found: error @@ -71,13 +73,13 @@ jobs: ## Release on tag - uses: actions/download-artifact@v4 - name: Display structure of downloaded files - run: dir /s + run: dir LuaBitOp-DLL - name: Release DLL if: startsWith(github.ref, 'refs/tags/') uses: softprops/action-gh-release@v1 with: files: | - dll/bit.dll + bit.dll LICENSE README.md fail_on_unmatched_files: true