36 lines
809 B
Markdown
36 lines
809 B
Markdown
# GitHub Action - Setup xmake
|
|
[](https://github.com/xmake-io/github-action-setup-xmake/actions)
|
|
[](https://github.com/marketplace/actions/setup-xmake)
|
|
|
|
Set up your GitHub Actions workflow with a specific version of xmake
|
|
|
|
## Usage
|
|
|
|
See [action.yml](./action.yml).
|
|
|
|
## Example
|
|
|
|
Use latest version:
|
|
|
|
```yml
|
|
uses: xmake-io/github-action-setup-xmake@v1
|
|
with:
|
|
xmake-version: latest
|
|
```
|
|
|
|
Use specified version:
|
|
|
|
```yml
|
|
uses: xmake-io/github-action-setup-xmake@v1
|
|
with:
|
|
xmake-version: '2.3.1'
|
|
```
|
|
|
|
Use semver:
|
|
|
|
```yml
|
|
uses: xmake-io/github-action-setup-xmake@v1
|
|
with:
|
|
xmake-version: '>=2.2.6 <=2.3.1'
|
|
```
|