chore: replace set-env to ENV FILE $GITHUB_ENV

fix https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
This commit is contained in:
Ikiru Yoshizaki
2020-10-14 12:12:28 +09:00
parent e82353b4d9
commit a3e9932be7
2 changed files with 34 additions and 34 deletions

View File

@@ -3,7 +3,7 @@ name: Build-Debug
on:
push:
branches:
- "**"
- "master"
tags:
- "!*" # not a tag push
pull_request:
@@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
dotnet-version: 3.1.x
- run: dotnet test -c Debug ./src/UniTask.NetCoreTests/UniTask.NetCoreTests.csproj
build-unity: