We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e06e9f4 commit 7a2472cCopy full SHA for 7a2472c
.github/workflows/main.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
build-and-deploy:
10
- runs-on: windows-latest
+ runs-on: ubuntu-latest
11
steps:
12
# uses GitHub's checkout action to checkout code form the master branch
13
- uses: actions/checkout@v3
@@ -19,7 +19,7 @@ jobs:
19
dotnet-version: '7.0.x'
20
21
- name: Publish .NET Core Project
22
- run: dotnet publish source/HybridOverlay/HybridOverlay.csproj -c Release -o release --runtime win-x64 --nologo -p:PublishSingleFile=true --self-contained false
+ run: dotnet publish source/HybridOverlay/HybridOverlay.csproj -c Release -o release --runtime win-x64 --nologo
23
24
- name: create zip file
25
run: cd release && zip -r ../release.zip .
0 commit comments