We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b20097 commit d8cff32Copy full SHA for d8cff32
README.md
@@ -23,13 +23,23 @@ 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
+ with:
38
+ dotnet-version: '6.0.x'
39
+ include-prerelease: true
40
+- run: dotnet build <my project>
41
+```
42
+
43
Matrix Testing:
44
45
jobs:
0 commit comments