Skip to content

Commit

Permalink
fix: remove feature flag that doesn't exist in holochain_cli, re-add …
Browse files Browse the repository at this point in the history
…mac target
  • Loading branch information
mattyg committed Oct 12, 2023
1 parent 4ba6930 commit 75e97bc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/install-release-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ jobs:
fail-fast: true
matrix:
platforms:
- host: macos-13
target: aarch-apple-darwin
- host: ubuntu-20.04
target: x86_64-unknown-linux-gnu
- host: windows-2019
target: x86_64-pc-windows-msvc
env:
MACOSX_DEPLOYMENT_TARGET: 10.13
runs-on: ${{ matrix.platforms.host }}
steps:
- name: install Rust stable
Expand Down Expand Up @@ -53,7 +57,7 @@ jobs:
$HcPath = Get-Command holochain | Select-Object -ExpandProperty Definition
Copy-Item $HcPath -Destination binaries/holochain-v${{ github.event.client_payload.holochain_version }}-${{ matrix.platforms.target }}.exe
cargo install holochain_cli --version ${{ github.event.client_payload.hc_version }} --features sqlite-encrypted
cargo install holochain_cli --version ${{ github.event.client_payload.hc_version }}
$HcPath = Get-Command hc | Select-Object -ExpandProperty Definition
Copy-Item $HcPath -Destination binaries/hc-v${{ github.event.client_payload.hc_version }}-${{ matrix.platforms.target }}.exe
Expand All @@ -68,7 +72,7 @@ jobs:
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH binaries/holochain-v${{ github.event.client_payload.holochain_version }}-${{ matrix.platforms.target }}
cargo install holochain_cli --version ${{ github.event.client_payload.hc_version }} --features sqlite-encrypted
cargo install holochain_cli --version ${{ github.event.client_payload.hc_version }}
HC_PATH=$(which hc)
cp $HC_PATH binaries/hc-v${{ github.event.client_payload.hc_version }}-${{ matrix.platforms.target }}
Expand Down

0 comments on commit 75e97bc

Please sign in to comment.