Skip to content

Commit

Permalink
manual release from git
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Jun 11, 2024
1 parent 98e2c80 commit 7f9a2cc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/holochain-binaries-manually.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
$env:HOLOCHAIN_VERSION = $(node -p -e "require('./config.json').holochainVersion")
cargo install holochain --version $env:HOLOCHAIN_VERSION --locked
# cargo install holochain --version $env:HOLOCHAIN_VERSION --locked
cargo install holochain --git https://github.com/holochain/holochain --rev d4a2f2c90abbe966c38a207bdc41979c5ec7d9a7
$HcPath = Get-Command holochain | Select-Object -ExpandProperty Definition
Copy-Item $HcPath -Destination holochain-v$env:HOLOCHAIN_VERSION-x86_64-pc-windows-msvc.exe
Expand All @@ -60,13 +61,15 @@ jobs:
HOLOCHAIN_VERSION=$(node -p -e "require('./config.json').holochainVersion")
cargo install holochain --version $HOLOCHAIN_VERSION --target x86_64-apple-darwin --locked
# cargo install holochain --version $HOLOCHAIN_VERSION --target x86_64-apple-darwin --locked
cargo install holochain --git https://github.com/holochain/holochain --rev d4a2f2c90abbe966c38a207bdc41979c5ec7d9a7
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH holochain-v$HOLOCHAIN_VERSION-x86_64-apple-darwin
gh release upload "${GITHUB_REF#refs/tags/}" "holochain-v$HOLOCHAIN_VERSION-x86_64-apple-darwin"
cargo install holochain --version $HOLOCHAIN_VERSION --target aarch64-apple-darwin --locked
# cargo install holochain --version $HOLOCHAIN_VERSION --target aarch64-apple-darwin --locked
cargo install holochain --git https://github.com/holochain/holochain --rev d4a2f2c90abbe966c38a207bdc41979c5ec7d9a7
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH holochain-v$HOLOCHAIN_VERSION-aarch64-apple-darwin
Expand All @@ -80,7 +83,8 @@ jobs:
run: |
HOLOCHAIN_VERSION=$(node -p -e "require('./config.json').holochainVersion")
cargo install holochain --version $HOLOCHAIN_VERSION --locked
# cargo install holochain --version $HOLOCHAIN_VERSION --locked
cargo install holochain --git https://github.com/holochain/holochain --rev d4a2f2c90abbe966c38a207bdc41979c5ec7d9a7
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH holochain-v$HOLOCHAIN_VERSION-x86_64-unknown-linux-gnu
Expand Down
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"holochainVersion": "0.4.0-dev.1",
"lairVersion": "0.4.4"
"holochainVersion": "0.4.0-dev.8-d4a2f2",
"lairVersion": "0.4.5"
}

0 comments on commit 7f9a2cc

Please sign in to comment.