-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(v1.1): Support nightly releases
- Loading branch information
1 parent
1174d2d
commit 280bed3
Showing
5 changed files
with
83 additions
and
13 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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.iml | ||
.idea | ||
.project | ||
.settings | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# YAKS Tools Action | ||
# YAKS Install Action | ||
|
||
[![](https://github.com/citrusframework/yaks-action/workflows/Test/badge.svg?branch=main)](https://github.com/citrusframework/yaks-action/actions) | ||
[![](https://github.com/citrusframework/yaks-install-action/workflows/Test/badge.svg?branch=main)](https://github.com/citrusframework/yaks-install-action/actions) | ||
|
||
A GitHub Action for installing and using YAKS client tools. | ||
|
||
|
@@ -31,8 +31,55 @@ jobs: | |
yaks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: YAKS client | ||
uses: citrusframework/yaks-action@v1 | ||
- name: YAKS tools | ||
uses: citrusframework/yaks-install-action@v1.1 | ||
``` | ||
This uses [@citrusframework/yaks-action](https://www.github.com/citrusframework/yaks-action) GitHub Action to install the YAKS client binaries. | ||
This uses [@citrusframework/yaks-install-action](https://www.github.com/citrusframework/yaks-install-action) GitHub Action to install the YAKS client binaries. | ||
## Use specific version | ||
By default, the action will resolve the latest released version of YAKS. | ||
You can provide a specific version to install though. | ||
Create a workflow (eg: `.github/workflows/create-cluster.yml`): | ||
|
||
```yaml | ||
name: YAKS | ||
on: pull_request | ||
jobs: | ||
yaks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: YAKS tools | ||
uses: citrusframework/[email protected] | ||
with: | ||
version: v0.15.1 | ||
``` | ||
|
||
This will try to resolve a YAKS release tag with `v0.15.1` and use this specific version. | ||
|
||
## Use nightly releases | ||
|
||
YAKS framework provides access to nightly snapshot pre-release versions. | ||
|
||
Create a workflow (eg: `.github/workflows/create-cluster.yml`): | ||
|
||
```yaml | ||
name: YAKS | ||
on: pull_request | ||
jobs: | ||
yaks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: YAKS tools | ||
uses: citrusframework/[email protected] | ||
with: | ||
version: nightly | ||
``` | ||
|
||
This will use the latest available nightly snapshot version of YAKS. |
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
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