Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
longod committed Apr 17, 2024
1 parent 9cf9c40 commit 3d16352
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,21 @@ jobs:
cmake . -A Win32 -DLUA_INCLUDE_DIR="${{github.workspace}}/src/MWSE/deps/LuaJIT/src" -DLUA_LIBRARY="${{github.workspace}}/src/MWSE/deps/LuaJIT/src/lua*.lib"
cmake --build . --target effil --config Release -- -m
- name: Create MWSE Package
- name: Create Lib Package
shell: cmd
run: |
copy /v "src\effil\effil.dll" "MWSE\Data Files\MWSE\lib\"
copy /v "src\effil\LICENSE" "MWSE\effil-LICENSE"
copy "LICENSE" "MWSE\"
copy "README.md" "MWSE\"
mkdir effil-mw
xcopy "MWSE\Data Files\MWSE\lib" "effil-mw\Data Files\MWSE\lib" /S
copy "MWSE\Data Files\efiil-metadata.toml" "effil-mw\Data Files"
copy /v "src\effil\effil.dll" "effil-mw\Data Files\MWSE\lib"
copy /v "src\effil\LICENSE" "effil-mw\effil-LICENSE"
copy "LICENSE" "effil-mw"
copy "README.md" "effil-mw"
- name: Upload MWSE
uses: actions/upload-artifact@v4
with:
name: bin
name: effil-mw
path: |
MWSE/*
effil-mw
retention-days: 1

0 comments on commit 3d16352

Please sign in to comment.