mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-03-02 02:13:07 +00:00
fix no glob pattern on zip command
This commit is contained in:
parent
5cd5906479
commit
53d50c8f1f
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@ -96,18 +96,18 @@ jobs:
|
||||
if: matrix.os == 'linux'
|
||||
run: |
|
||||
sudo apt-get update && sudo apt-get install -y zip
|
||||
cd ./build && zip -j "${PWD}/../${{env.storage_binary}}.zip" ${{ env.storage_binary_base }}
|
||||
cd ./build && zip -j "${PWD}/../${{env.storage_binary}}.zip" ./*
|
||||
|
||||
- name: Package ${{ env.storage_binary_base }} MacOS (compress and preserve perms)
|
||||
if: matrix.os == 'macos'
|
||||
run: |
|
||||
cd ./build && zip -j "${PWD}/../${{env.storage_binary}}.zip" ${{ env.storage_binary_base }}
|
||||
cd ./build && zip -j "${PWD}/../${{env.storage_binary}}.zip" ./*
|
||||
|
||||
- name: Package ${{ env.storage_binary_base }} Windows (compress and preserve perms)
|
||||
if: matrix.os == 'windows'
|
||||
shell: msys2 {0}
|
||||
run: |
|
||||
cd ./build && 7z a -tzip "${PWD}/../${{env.storage_binary}}.zip" ${{ env.storage_binary_base }}
|
||||
cd ./build && 7z a -tzip "${PWD}/../${{env.storage_binary}}.zip" ./*
|
||||
|
||||
- name: Upload Logos Storage binary to workflow artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user