Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 639 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 639 Bytes

Actionfile

An fast and idiot proof task runner. Use a basic TOML file to define your tasks and run them with ease.

Installation

Check the latest release for your platform and download the binary. You can also build from source. By downloading Bun Runtime

git clone https://github.com/lassejlv/better-actionfile && cd actionfile && bun run build --compile --minify index.ts --outfile build/actionfile

Usage

action.toml

[hello]
cmd = "echo Hello World"
action # Will run the first command in action.toml otherwiese use action <command>

A better guide is coming soon.