Skip to content

Commit

Permalink
Update the README in preparation for releasing 1.0.0 of this action (#32
Browse files Browse the repository at this point in the history
)
  • Loading branch information
DilumAluthge authored Mar 29, 2024
1 parent 35cd445 commit 7d8b3ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ When you use this action, it will do three things:
To install the latest stable Julia v1:

```yaml
- uses: julia-actions/install-juliaup@latest
- uses: julia-actions/install-juliaup@v1
with:
julia-version: '1'
```
To install a specific Julia version:
```yaml
- uses: julia-actions/install-juliaup@latest
- uses: julia-actions/install-juliaup@v1
with:
julia-version: '1.10.2'
```
Expand All @@ -31,7 +31,7 @@ In general, if `juliaup add FOO` would have been a valid command on your local m
So, for example, suppose that you want alpha pre-releases for the next upcoming release. On your local machine, `juliaup add alpha` is a valid command. Therefore, `alpha` is a valid value for the `julia-version` input to this action:

```yaml
- uses: julia-actions/install-juliaup@latest
- uses: julia-actions/install-juliaup@v1
with:
julia-version: 'alpha'
```
Expand Down

0 comments on commit 7d8b3ac

Please sign in to comment.