GitHub action to install and run rokit; a toolchain manager
Find a file
2023-09-20 13:43:33 -04:00
.github/workflows ci: set cache parameter explicitly 2023-09-20 13:08:44 -04:00
.editorconfig add editorconfig 2022-07-18 00:28:55 -04:00
action.yml fix: use ~ for cache path 2023-09-20 13:12:20 -04:00
CHANGELOG.md docs: prepare 0.4.2 2023-09-20 13:43:33 -04:00
LICENSE Initial commit 2022-07-17 21:30:59 -04:00
README.md docs: prepare 0.4.2 2023-09-20 13:43:33 -04:00

setup-aftman

CI discord

GitHub action to install and run aftman; a toolchain manager.

Usage

Use the latest released version of aftman with default parameters:

steps:
- uses: ok-nick/setup-aftman@v0.4.2

For a list of default parameter values, check here.

Advanced Usage

For more advanced cases, use the parameters below.

steps:
- uses: ok-nick/setup-aftman@v0.4.2
  with:
    version: v1.0.0 # name of git tag in aftman (uses latest by default)
    path: some_dir/my_project # path to project dir containing `aftman.toml` (uses current dir by default)
    cache: "false" # whether to enable binary caching between runs (false by default)
    token: ${{ github.token }} # GitHub token to bypass rate limit (passed by default)

Credits

@nezuo - Installing aftman using gh