Skip to content

Commit 7df4385

Browse files
committed
fix build issue
1 parent a3e2a6a commit 7df4385

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/dotnet.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
if [[ $OUT =~ "has the following vulnerable packages" ]] ; then exit 1 ; fi
4040
4141
- name: Build
42-
run: dotnet publish -c ${{ env.dotNetConfiguration }} -r linux-x64 --no-self-contained
42+
run: |
43+
echo "" > .env
44+
dotnet publish -c ${{ env.dotNetConfiguration }} -r linux-x64 --no-self-contained
4345
4446
- name: Test
4547
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage"

0 commit comments

Comments
 (0)