Skip to content

Commit

Permalink
echo content
Browse files Browse the repository at this point in the history
  • Loading branch information
lassemand committed Nov 5, 2024
1 parent e2c7435 commit 9b8c9b4
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ jobs:
needs: [validate-preconditions]
runs-on: macos-latest-large
environment: release
# if: contains(fromJSON('["rc", "client-macos"]'), needs.validate-preconditions.outputs.release_type)
if: false
if: contains(fromJSON('["rc", "client-macos"]'), needs.validate-preconditions.outputs.release_type)
# if: false
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -254,11 +254,14 @@ jobs:
run: stack build --force-dirty

- name: Zip the binaries
shell: bash
run: |
pwd
mkdir out
binDir=$(stack path --local-install-root)/bin
(cd $binDir && powershell -Command "Compress-Archive -Path concordium-client.exe,concordium_base.dll,sha_2.dll -DestinationPath concordium-client.zip")
mv -f $binDir/concordium-client.zip out/concordium-client.zip
bin_dir=$(stack path --local-install-root)/bin
echo "$bin_dir"
(cd "$bin_dir" && powershell -Command "Compress-Archive -Path concordium-client.exe,concordium_base.dll,sha_2.dll -DestinationPath concordium-client.zip")
mv -f "$bin_dir/concordium-client.zip" out/concordium-client.zip
- name: Publish
run: |
Expand Down

0 comments on commit 9b8c9b4

Please sign in to comment.