mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-21 17:15:10 +00:00
review feedback: un-pin fabric CLI targets
Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com>
This commit is contained in:
parent
94a1542782
commit
fd2fffbd43
2 changed files with 2 additions and 8 deletions
5
.github/actions/fsat-setup/action.yaml
vendored
5
.github/actions/fsat-setup/action.yaml
vendored
|
|
@ -4,9 +4,6 @@ inputs:
|
||||||
node-version:
|
node-version:
|
||||||
description: Version of node
|
description: Version of node
|
||||||
default: 16.x
|
default: 16.x
|
||||||
fabric-version:
|
|
||||||
description: Version of Fabric
|
|
||||||
default: 2.4.7
|
|
||||||
just-version:
|
just-version:
|
||||||
description: Just Version
|
description: Just Version
|
||||||
default: 1.2.0
|
default: 1.2.0
|
||||||
|
|
@ -45,5 +42,5 @@ runs:
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: full-stack-asset-transfer-guide
|
working-directory: full-stack-asset-transfer-guide
|
||||||
run: |
|
run: |
|
||||||
curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- -f ${{ inputs.fabric-version }} binary
|
curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- binary
|
||||||
echo ${PWD}/bin >> $GITHUB_PATH
|
echo ${PWD}/bin >> $GITHUB_PATH
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,6 @@ inputs:
|
||||||
java-version:
|
java-version:
|
||||||
description: Version of JDK
|
description: Version of JDK
|
||||||
default: 11.x
|
default: 11.x
|
||||||
fabric-version:
|
|
||||||
description: Version of Fabric
|
|
||||||
default: 2.4.7
|
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
|
|
@ -38,7 +35,7 @@ runs:
|
||||||
- name: Install fabric CLI
|
- name: Install fabric CLI
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- -f ${{ inputs.fabric-version }} binary
|
curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- binary
|
||||||
echo ${PWD}/bin >> $GITHUB_PATH
|
echo ${PWD}/bin >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: Pull Fabric Docker Images
|
- name: Pull Fabric Docker Images
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue