Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Borwe committed Aug 16, 2023
1 parent c684c69 commit be39ad3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,16 @@ jobs:
- name: Zip file Unix
if: matrix.config.os != 'windows-latest'
run: |
zip -r ./wasm_nvim_${{matrix.config.os}}.zip ./lua/wasm_nvim.so
cd ./lua
zip -r ./wasm_nvim_${{matrix.config.os}}.zip ./wasm_nvim.so
cp ./wasm_nvim_${{matrix.config.os}}.zip ../
- name: Zip file Windows
if: matrix.config.os == 'windows-latest'
run: |
tar -cf ./wasm_nvim_${{matrix.config.os}}.zip ./lua/wasm_nvim.dll
cd ./lua
tar -cf ./wasm_nvim_${{matrix.config.os}}.zip ./wasm_nvim.dll
copy wasm_nvim_${{matrix.config.os}}.zip ..\
- uses: "actions/upload-artifact@v2"
id: upload_artifact
Expand Down

0 comments on commit be39ad3

Please sign in to comment.