Skip to content

Commit f4f3611

Browse files
committed
Use GitHub Actions for deployments continued
1 parent db89e96 commit f4f3611

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Build
22

33
on:
44
push:
5-
branches:
6-
- '*'
7-
tags:
8-
- '*'
5+
pull_request:
6+
release:
7+
types:
8+
- published
99

1010
env:
1111
# Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages
@@ -23,7 +23,7 @@ jobs:
2323
matrix:
2424
os: [ubuntu-latest, windows-latest, macOS-latest]
2525
steps:
26-
- name: Checkout
26+
- name: 'Checkout'
2727
uses: actions/checkout@v2
2828
with:
2929
lfs: true
@@ -34,7 +34,7 @@ jobs:
3434
- name: 'Install .NET Core SDK'
3535
uses: actions/setup-dotnet@v1
3636
with:
37-
dotnet-version: 3.1.300
37+
dotnet-version: 3.1.301
3838
- name: 'Dotnet Tool Restore'
3939
run: dotnet tool restore
4040
shell: pwsh

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.300"
3+
"version": "3.1.301"
44
}
55
}

0 commit comments

Comments
 (0)