Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: update README.md to reflect v0.6.0 release #14

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# `setup-cue`

***Install a specific [CUE](https://cuelang.org) CLI version on your Github
***Install a specific [CUE](https://cuelang.org) CLI version on your GitHub
Actions runner***

Use this action in your github actions workflow to install a specific version of
[CUE](https://cuelang.org) on your runner. `version` is a semantic version
string like `v0.4.0`. You can also use the keyword `latest` (default) to use the
latest stable release of `cue`. Releases of `cue` are listed
Use this action in your GitHub Actions workflow to install a specific version of
[CUE](https://cuelang.org) on your runner. The input `version` is a
[version](https://go.dev/ref/mod#versions) string like `v0.6.0`, or
`v0.6.0-beta.1`. You can also use the keyword `latest` (default) to use the
latest release of `cue`. Releases and pre-releases of `cue` are listed
[here](https://github.com/cue-lang/cue/releases).

```
- uses: cue-lang/setup-cue@v1
- uses: cue-lang/setup-cue@v1.0.0
with:
version: '<version>' # default is latest
id: install
Expand Down Expand Up @@ -38,13 +39,13 @@ can be executed directly in later workflow steps. It is also stored in the

## Issues/Discussions

Please use the [main CUE repository](https://github.com/cue-lang/cue) to raise
issues or start discussions about the `setup-cue` action.
Please use the [main CUE repository](https://github.com/cue-lang/cue/issues) to
raise issues or start discussions about the `setup-cue` action.

## Contributing

This project follows the [CUE Contribution
Guide](https://github.com/cue-lang/cue/blob/master/doc/contribute.md).
Guide](https://github.com/cue-lang/cue/blob/master/CONTRIBUTING.md).

## Thanks

Expand Down
Loading