Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Added support for 141
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Jun 15, 2022
1 parent b721840 commit ca72590
Show file tree
Hide file tree
Showing 8 changed files with 454 additions and 7 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,16 @@ jobs:
$HcPath = Get-Command holochain | Select-Object -ExpandProperty Definition
Copy-Item $HcPath -Destination src-tauri/bins/holochain-v0.0.136-x86_64-pc-windows-msvc.exe
# NEW_VERSION: install new holochain version and copy its binary to the tauri path
cargo install --locked --git https://github.com/guillemcordoba/holochain.git --rev f4873057ac7318fb6897690b78a4d82968253a4d holochain
$HcPath = Get-Command holochain | Select-Object -ExpandProperty Definition
Copy-Item $HcPath -Destination src-tauri/bins/holochain-v0.0.139-x86_64-pc-windows-msvc.exe
cargo install --locked --git https://github.com/guillemcordoba/holochain.git --rev b9552356818a8876add8ffce29150b9f9dd7cd96 holochain
$HcPath = Get-Command holochain | Select-Object -ExpandProperty Definition
Copy-Item $HcPath -Destination src-tauri/bins/holochain-v0.0.141-x86_64-pc-windows-msvc.exe
# NEW_VERSION: install new holochain version and copy its binary to the tauri path
- name: download caddy (MacOS only)
if: matrix.platform == 'macos-10.15'
run: |
Expand Down Expand Up @@ -100,6 +104,10 @@ jobs:
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH src-tauri/bins/holochain-v0.0.139-x86_64-apple-darwin
cargo install --locked --git https://github.com/guillemcordoba/holochain.git --rev b9552356818a8876add8ffce29150b9f9dd7cd96 holochain
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH src-tauri/bins/holochain-v0.0.141-x86_64-apple-darwin
# NEW_VERSION: install new holochain version and copy its binary to the tauri path
- name: install dependencies (ubuntu only)
Expand Down Expand Up @@ -148,6 +156,10 @@ jobs:
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH src-tauri/bins/holochain-v0.0.139-x86_64-unknown-linux-gnu
cargo install --locked --git https://github.com/guillemcordoba/holochain.git --rev b9552356818a8876add8ffce29150b9f9dd7cd96 holochain
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH src-tauri/bins/holochain-v0.0.141-x86_64-unknown-linux-gnu
# NEW_VERSION: install new holochain version and copy its binary to the tauri path
- name: build the app
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,15 @@ jobs:
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH src-tauri/bins/holochain-v0.0.136-x86_64-unknown-linux-gnu
# NEW_VERSION: install new holochain version and copy its binary to the tauri path
cargo install --locked --git https://github.com/guillemcordoba/holochain.git --rev f4873057ac7318fb6897690b78a4d82968253a4d holochain
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH src-tauri/bins/holochain-v0.0.139-x86_64-unknown-linux-gnu
cargo install --locked --git https://github.com/guillemcordoba/holochain.git --rev b9552356818a8876add8ffce29150b9f9dd7cd96 holochain
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH src-tauri/bins/holochain-v0.0.141-x86_64-unknown-linux-gnu
# NEW_VERSION: install new holochain version and copy its binary to the tauri path
- name: install app dependencies and build it
run: npm install && npm run build
Loading

0 comments on commit ca72590

Please sign in to comment.