We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b20097 + b50d705 commit a71d1ebCopy full SHA for a71d1eb
README.md
@@ -23,13 +23,24 @@ See [action.yml](action.yml)
23
Basic:
24
```yaml
25
steps:
26
-- uses: actions/checkout@main
+- uses: actions/checkout@v2
27
- uses: actions/setup-dotnet@v1
28
with:
29
dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel
30
- run: dotnet build <my project>
31
```
32
33
+Preview version:
34
+```yml
35
+steps:
36
+- uses: actions@checkout@v2
37
+- uses: actions/setup-dotnet@v1
38
+ with:
39
+ dotnet-version: '6.0.x'
40
+ include-prerelease: true
41
+- run: dotnet build <my project>
42
+```
43
+
44
Matrix Testing:
45
46
jobs:
0 commit comments