Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
See artifact content
Browse files Browse the repository at this point in the history
  • Loading branch information
juadde committed Dec 18, 2023
1 parent 77dd38f commit 6e13158
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/luabitop_compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,28 +56,30 @@ 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
uses: actions/upload-artifact@v4
with:
name: LuaBitOp-DLL
path: |
dll/bit.dll
bit.dll
LICENSE
README.md
if-no-files-found: error

## 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

0 comments on commit 6e13158

Please sign in to comment.