Skip to content

Commit

Permalink
docs: prepare 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ok-nick committed Sep 20, 2023
1 parent 047c37f commit e226f24
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

## [Unreleased]

## [0.4.2] - 2023-09-20
## Changed
- Disable caching by default #15

Expand Down Expand Up @@ -38,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- 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.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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ GitHub action to install and run [aftman](https://github.com/LPGhatguy/aftman);
Use the latest released version of `aftman` with default parameters:
```yaml
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).

### Advanced Usage
For more advanced cases, use the parameters below.
```yaml
steps:
- uses: ok-nick/setup-aftman@v0.4.1
- 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: "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)
```

Expand Down

0 comments on commit e226f24

Please sign in to comment.