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 b635369 commit 5630a6fCopy full SHA for 5630a6f
.github/workflows/nightly.yml
@@ -25,7 +25,7 @@ on:
25
jobs:
26
nightly:
27
28
- runs-on: windows-latest
+ runs-on: ubuntu-latest
29
30
env:
31
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
@@ -37,10 +37,15 @@ jobs:
37
with:
38
ref: ${{ github.event.client_payload.ref || github.ref }}
39
40
- - name: Setup .NET Core
+ - name: Setup .NET Core 2.1
41
uses: actions/setup-dotnet@v1
42
43
- dotnet-version: 2.2.108
+ dotnet-version: 2.1.x
44
+
45
+ - name: Setup .NET Core 3.1
46
+ uses: actions/setup-dotnet@v1
47
+ with:
48
+ dotnet-version: 3.1.x
49
50
- name: Build with dotnet
51
run: dotnet build FirebaseAdmin/FirebaseAdmin
0 commit comments