Skip to content

Commit

Permalink
Removed dynamic library from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanRace committed Nov 2, 2022
1 parent 449b910 commit e922cc6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/generate-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ jobs:
- name: List target/release
run: ls target/release
- name: zip macos artifact
# mv target/release/libbevy_dylib.dylib libbevy_dylib.dylib
run: |
mv target/release/biquinho biquinho
mv target/release/libbevy_dylib.dylib libbevy_dylib.dylib
zip -r biquinho-macos target/release/biquinho biquinho libbevy_dylib.dylib assets/
zip -r biquinho-macos target/release/biquinho biquinho assets/
- name: upload macos artifact
uses: actions/upload-artifact@v1
Expand All @@ -103,10 +103,10 @@ jobs:
run: cargo build --release

- name: zip linux artifact
#mv target/release/libbevy_dylib.so libbevy_dylib.so
run: |
mv target/release/biquinho biquinho
mv target/release/libbevy_dylib.so libbevy_dylib.so
zip -r biquinho-linux biquinho libbevy_dylib.so assets/
zip -r biquinho-linux biquinho assets/
- name: upload macos artifact
uses: actions/upload-artifact@v1
Expand All @@ -126,9 +126,9 @@ jobs:
run: dir target\release

- name: zip win artifact
# powershell Compress-Archive -Path .\target\release\bevy_dylib.dll -Update -DestinationPath biquinho-windows.zip
run: |
powershell Compress-Archive .\target\release\biquinho.exe biquinho-windows.zip
powershell Compress-Archive -Path .\target\release\bevy_dylib.dll -Update -DestinationPath biquinho-windows.zip
powershell Compress-Archive -Path .\assets -Update -DestinationPath biquinho-windows.zip
- name: upload windows artifact
Expand Down

0 comments on commit e922cc6

Please sign in to comment.