We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f342dc4 commit dc030daCopy full SHA for dc030da
1 file changed
.github/workflows/release.yml
@@ -10,11 +10,16 @@ jobs:
10
runs-on: ubuntu-18.04
11
12
steps:
13
- - uses: actions/checkout@v2
+ - name: Checkout the repository
14
+ uses: actions/checkout@v2
15
- - name: Setup .NET Core
16
+ - name: Fetch all tags and branches
17
+ run: git fetch --prune --unshallow
18
+
19
+ - name: Install .NET SDK
20
uses: actions/setup-dotnet@v1
21
with:
22
+ # gitversion needs 5.0 and we need all SDKs the project is targeting
23
dotnet-version: |
24
3.1.x
25
5.0.x
0 commit comments