Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyperledgendary/setup-hyperledger-fabric-action
https://github.com/hyperledgendary/setup-hyperledger-fabric-action
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/hyperledgendary/setup-hyperledger-fabric-action
- Owner: hyperledgendary
- License: apache-2.0
- Created: 2023-01-25T11:58:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-02T13:54:13.000Z (about 2 years ago)
- Last Synced: 2024-11-09T06:40:27.368Z (3 months ago)
- Language: JavaScript
- Size: 212 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# :gear: `setup-hyperledger-fabric-action`
> Action to setup Hyperledger Fabric CLIs## About
This action will install the Hyperledger Fabric CLIs (peer, fabric-ca-client etc) and set the path and `FABRIC_CFG_CONFIG`
It's not recommended to load the Fabric docker images in a GHA pipeline. Instead use the Microfab container for FV style testing.## Usage
To install the latest version
```yaml
steps:
- name: Install the latest patch level of the LTS
uses: hyperledgendary/setup-hyperledger-fabric-action
```To setup a specific version:
```yaml
steps:
- name: Install the 2.4.7 release specifically
uses: hyperledgendary/setup-hyperledger-fabric-action
with:
version: 2.4.7steps:
- name: Installs the last 2.5 development release and pulls docker imagaes
uses: hyperledgendary/setup-hyperledger-fabric-action
with:
version: 2.5.0-betasteps:
- name: Installs the last 2.5 development release
uses: hyperledgendary/setup-hyperledger-fabric-action
with:
version: 2.5-dev
```## Inputs
The actions supports the following inputs:- `version`: The version to install, defaulting to `2.4.7`
## License
[APACAHE-2.0](LICENSE).