From 72dfc9170b6fa9edfceaf62314c04020f43f003b Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 28 Jan 2020 16:03:11 +0100 Subject: [PATCH 1/4] Create dotnetcore.yml --- .github/workflows/dotnetcore.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/dotnetcore.yml diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml new file mode 100644 index 0000000..806f1a2 --- /dev/null +++ b/.github/workflows/dotnetcore.yml @@ -0,0 +1,13 @@ +name: .NET Core +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 2.2.108 + - name: Build with dotnet + run: dotnet build --configuration Release From 42e41ae87f0c92ccec695ccf08c729d0edbbfc12 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 28 Jan 2020 16:06:56 +0100 Subject: [PATCH 2/4] update dotnet version --- .github/workflows/dotnetcore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 806f1a2..9c1817e 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -8,6 +8,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 2.2.108 + dotnet-version: 3.0 - name: Build with dotnet run: dotnet build --configuration Release From 293ed5b3ef86143fcfe443d5926c8eccd5b8ce74 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 28 Jan 2020 16:08:10 +0100 Subject: [PATCH 3/4] Update dotnetcore.yml --- .github/workflows/dotnetcore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 9c1817e..05a7d21 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -8,6 +8,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.0 + dotnet-version: 3.1.101 - name: Build with dotnet run: dotnet build --configuration Release From 5786fcabbd2c7ec1d7d7ae13529210b5276c143d Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 28 Jan 2020 16:10:34 +0100 Subject: [PATCH 4/4] Delete dotnetcore.yml --- .github/workflows/dotnetcore.yml | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 .github/workflows/dotnetcore.yml diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml deleted file mode 100644 index 05a7d21..0000000 --- a/.github/workflows/dotnetcore.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: .NET Core -on: [push, pull_request] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 3.1.101 - - name: Build with dotnet - run: dotnet build --configuration Release