https://github.com/vulpemventures/nigiri-github-action
https://github.com/vulpemventures/nigiri-github-action
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vulpemventures/nigiri-github-action
- Owner: vulpemventures
- License: mit
- Created: 2021-08-06T08:49:32.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-29T00:37:17.000Z (over 1 year ago)
- Last Synced: 2025-07-18T08:15:50.680Z (11 months ago)
- Language: JavaScript
- Size: 743 KB
- Stars: 17
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nigiri Bitcoin action
Run Nigiri Bitcoin in your Github Action
## Inputs
## `version`
**Optional** The Nigiri version tag. Default to latest.
## `repository_url`
**Optional** The Github repository URL that contains the binary artifact. Default `"https://github.com/vulpemventures/nigiri"`.
## `use_liquid`
**Optional** Use --liquid flag. Default `true`.
## `use_ln`
**Optional** Use --ln flag. Default `false`.
## `use_ark`
**Optional** Use --ark flag. Default `false`.
## Usage
```yml
name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
```
### start Bitcoin-only services with LN
```yml
name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
with:
use_liquid: false
use_ln: true
```
### start with ARK network
```yml
name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
with:
use_ark: true
```