ngalaiko / setup-hledger

Set up your GitHub Actions workflow with a specific version of hledger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setup-hledger

Test

This action can be used to setup hledger binaries.

Usage

See action.yaml

Basic:

steps:
- uses: actions/checkout@v3
- uses: ngalaiko/setup-hledger@v1
- run: |
    hledger --version

Specific version:

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 are supported.

Supported runners

  • ubuntu-latest
  • macos-latest

License

The scripts and documentation in this project are released under the MIT License

About

Set up your GitHub Actions workflow with a specific version of hledger

License:MIT License


Languages

Language:Shell 100.0%