docs: prepare 0.4.2

This commit is contained in:
ok-nick 2023-09-20 13:42:58 -04:00
parent 047c37f2ae
commit e226f24209
No known key found for this signature in database
GPG key ID: E6F3F722530600D2
2 changed files with 7 additions and 4 deletions

View file

@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
## [0.4.2] - 2023-09-20
## Changed ## Changed
- Disable caching by default #15 - Disable caching by default #15
@ -38,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Everything - Everything
[Unreleased]: https://github.com/ok-nick/setup-aftman/compare/v0.4.1...HEAD [Unreleased]: https://github.com/ok-nick/setup-aftman/compare/v0.4.2...HEAD
[0.4.2]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.2
[0.4.1]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.1 [0.4.1]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.1
[0.4.0]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.0 [0.4.0]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.0
[0.3.0]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.3.0 [0.3.0]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.3.0

View file

@ -12,7 +12,7 @@ GitHub action to install and run [aftman](https://github.com/LPGhatguy/aftman);
Use the latest released version of `aftman` with default parameters: Use the latest released version of `aftman` with default parameters:
```yaml ```yaml
steps: steps:
- uses: ok-nick/setup-aftman@v0.4.1 - uses: ok-nick/setup-aftman@v0.4.2
``` ```
For a list of default parameter values, [check here](https://github.com/ok-nick/setup-aftman/blob/main/action.yml#L5-L20). For a list of default parameter values, [check here](https://github.com/ok-nick/setup-aftman/blob/main/action.yml#L5-L20).
@ -20,11 +20,11 @@ For a list of default parameter values, [check here](https://github.com/ok-nick/
For more advanced cases, use the parameters below. For more advanced cases, use the parameters below.
```yaml ```yaml
steps: steps:
- uses: ok-nick/setup-aftman@v0.4.1 - uses: ok-nick/setup-aftman@v0.4.2
with: with:
version: v1.0.0 # name of git tag in aftman (uses latest by default) 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) path: some_dir/my_project # path to project dir containing `aftman.toml` (uses current dir by default)
cache: "true" # whether to enable binary caching between runs (true 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) token: ${{ github.token }} # GitHub token to bypass rate limit (passed by default)
``` ```