Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
Changes to action
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdeafcafe committed Apr 27, 2020
1 parent b7a04d4 commit 2592b93
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: .NET Core
name: Runner (dotnet)

on:
push:
Expand All @@ -9,13 +9,17 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Install dependencies
run: dotnet restore
run: dotnet restore ./dotnet
- name: Build
run: dotnet build --configuration Release --no-restore
run: dotnet build --configuration Release --no-restore --project ./dotnet

0 comments on commit 2592b93

Please sign in to comment.