Skip to content

Commit

Permalink
added --locked flag
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed May 14, 2024
1 parent 5d7292e commit e4f4cfc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/holochain-binaries-manually.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
$env:HOLOCHAIN_VERSION = $(node -p -e "require('./config.json').holochainVersion")
cargo install holochain --version $env:HOLOCHAIN_VERSION --locked --features sqlite-encrypted
cargo install holochain --version $env:HOLOCHAIN_VERSION --locked
$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 @@ -57,7 +57,7 @@ jobs:
run: |
HOLOCHAIN_VERSION=$(node -p -e "require('./config.json').holochainVersion")
cargo install holochain --version $HOLOCHAIN_VERSION --locked --features sqlite-encrypted
cargo install holochain --version $HOLOCHAIN_VERSION --locked
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH holochain-v$HOLOCHAIN_VERSION-x86_64-apple-darwin
Expand All @@ -70,7 +70,7 @@ jobs:
run: |
HOLOCHAIN_VERSION=$(node -p -e "require('./config.json').holochainVersion")
cargo install holochain --version $HOLOCHAIN_VERSION --locked --features sqlite-encrypted
cargo install holochain --version $HOLOCHAIN_VERSION --locked
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH holochain-v$HOLOCHAIN_VERSION-x86_64-unknown-linux-gnu
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/holochain-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cargo install holochain --version ${{ inputs.holochain-version }}
cargo install holochain --version ${{ inputs.holochain-version }} --locked
$HcPath = Get-Command holochain | Select-Object -ExpandProperty Definition
Copy-Item $HcPath -Destination holochain-v${{ inputs.holochain-version }}-x86_64-pc-windows-msvc.exe
Expand All @@ -60,7 +60,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cargo install holochain --version ${{ inputs.holochain-version }}
cargo install holochain --version ${{ inputs.holochain-version }} --locked
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH holochain-v${{ inputs.holochain-version }}-x86_64-apple-darwin
Expand All @@ -71,7 +71,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cargo install holochain --version ${{ inputs.holochain-version }}
cargo install holochain --version ${{ inputs.holochain-version }} --locked
HOLOCHAIN_PATH=$(which holochain)
cp $HOLOCHAIN_PATH holochain-v${{ inputs.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.1.8",
"lairVersion": "0.4.2"
"holochainVersion": "0.4.0-dev.1",
"lairVersion": "0.4.4"
}

0 comments on commit e4f4cfc

Please sign in to comment.