Skip to content

Commit 7679a98

Browse files
committed
Moved to dotnet version 3.1.202
1 parent c5c236f commit 7679a98

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/CI-CD-Docs.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '.github/**'
1010

1111
env:
12-
VERSION: '1.0.0-beta-6'
12+
VERSION: '1.0.0-beta-7'
1313
BRANCH: 'master'
1414
COMMIT: ''
1515
DOCFX_SOURCE_BRANCH_NAME: 'master'
@@ -27,11 +27,14 @@ jobs:
2727
files: '["docs/*.md", "docs/**/*.md", "*.csproj", "**/*.csproj"]'
2828
- uses: actions/setup-dotnet@v1
2929
with:
30-
dotnet-version: '3.1.201'
30+
dotnet-version: '3.1.202'
3131
- name: Building library and docs
3232
run: |
33-
dotnet build src/bunit.csproj
34-
dotnet build docs/docs.csproj
33+
dotnet restore
34+
dotnet build src/bunit.core --no-restore -p:version=$VERSION
35+
dotnet build src/bunit.web --no-restore -p:version=$VERSION
36+
dotnet build src/bunit.xunit --no-restore -p:version=$VERSION
37+
dotnet build docs/docs.csproj --no-restore
3538
- name: Deploy
3639
uses: JamesIves/github-pages-deploy-action@releases/v3
3740
with:

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
files: '["*.csproj", "**/*.csproj"]'
2424
- uses: actions/setup-dotnet@v1
2525
with:
26-
dotnet-version: '3.1.201'
26+
dotnet-version: '3.1.202'
2727
- name: Building and verifying library
2828
run: |
2929
dotnet restore src

.github/workflows/nuget-pack-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
files: '["*.csproj", "**/*.csproj"]'
2828
- uses: actions/setup-dotnet@v1
2929
with:
30-
dotnet-version: '3.1.201'
30+
dotnet-version: '3.1.202'
3131
- name: Building and verifying library
3232
run: |
3333
dotnet restore src

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.1.201"
3+
"version": "3.1.202"
44
}
55
}

0 commit comments

Comments
 (0)