We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f91d4d9 commit 63d84d1Copy full SHA for 63d84d1
.github/workflows/publish.yml
@@ -19,6 +19,14 @@ jobs:
19
- uses: actions/checkout@v4
20
with:
21
fetch-depth: 0
22
+
23
+ - name: Setup .NET Core
24
+ uses: actions/setup-dotnet@v2
25
+ with:
26
+ global-json-file: global.json
27
28
+ - name: Tool Restore
29
+ run: dotnet tool restore
30
31
- name: Install GitVersion
32
uses: gittools/actions/gitversion/[email protected]
@@ -33,15 +41,7 @@ jobs:
33
41
run: |
34
42
echo "Version: ${{ steps.gitversion.outputs.SemVer }}"
35
43
echo "CommitsSinceVersionSource: ${{ steps.gitversion.outputs.CommitsSinceVersionSource }}"
36
-
37
- - name: Setup .NET Core
38
- uses: actions/setup-dotnet@v2
39
- with:
40
- global-json-file: global.json
- - name: Tool Restore
- run: dotnet tool restore
44
45
- name: Test
46
run: dotnet nuke test
47
0 commit comments