-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdfc2ef
commit 69c4594
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,12 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "install aftman" | ||
run: aftman self-install | ||
- uses: ok-nick/[email protected] | ||
with: | ||
version: v1.0.0 # name of git tag in aftman (uses latest tag by default) | ||
path: some_dir/my_project # path to project dir containing `aftman.toml` ("." (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 (${{ github.token }} set by default) | ||
|
||
- name: "aftman install" | ||
run: ./aftman install | ||
|