https://github.com/ngalaiko/setup-hledger
Set up your GitHub Actions workflow with a specific version of hledger
https://github.com/ngalaiko/setup-hledger
github-actions hledger
Last synced: 6 months ago
JSON representation
Set up your GitHub Actions workflow with a specific version of hledger
- Host: GitHub
- URL: https://github.com/ngalaiko/setup-hledger
- Owner: ngalaiko
- License: mit
- Created: 2022-12-19T15:15:44.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T09:18:07.000Z (about 1 year ago)
- Last Synced: 2025-04-10T00:50:45.713Z (6 months ago)
- Topics: github-actions, hledger
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-hledger
[](https://github.com/ngalaiko/setup-hledger/actions/workflows/test.yaml)
This action can be used to setup hledger binaries.
## Usage
See [action.yaml](action.yaml)
**Basic:**
```yaml
steps:
- uses: actions/checkout@v3
- uses: ngalaiko/setup-hledger@v1
- run: |
hledger --version
```**Specific version:**
```yaml
steps:
- uses: actions/checkout@v3
- uses: ngalaiko/setup-hledger@v1
with:
version: 1.28
- run: |
hledger --version
```The `version` input is optional. If not supplied, the latest available release will be used.
### Supported versions
All the versions [released on GitHub](https://github.com/simonmichael/hledger/releases) are supported.
### Supported runners
* ubuntu-latest
* macos-latest## License
The scripts and documentation in this project are released under the [MIT License](LICENSE)