Skip to content

Commit 0318bf9

Browse files
author
Ibrahim Ethem Gursoy
authored
Update dotnet.yml
1 parent 32b544a commit 0318bf9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
- name: Build
2323
run: dotnet build --no-restore
2424
- name: Publish for linux-x64
25-
run: dotnet publish -c Release -r linux-x64 -o bin/publish_dist/linux-x64/ -p:PublishSingleFile=true --self-contained true
25+
run: dotnet publish -c Release -r linux-x64 --property:PublishDir=bin/publish_dist/linux-x64/ -p:PublishSingleFile=true --self-contained true
2626
- name: Publish for win-x64
27-
run: dotnet publish -c Release -r win-x64 -o bin/publish_dist/win-x64/ -p:PublishSingleFile=true --self-contained true
27+
run: dotnet publish -c Release -r win-x64 --property:PublishDir=bin/publish_dist/win-x64/ -p:PublishSingleFile=true --self-contained true
2828
- name: Publish for linux-arm64
29-
run: dotnet publish -c Release -r linux-arm64 -o bin/publish_dist/linux-arm64/ -p:PublishSingleFile=true --self-contained true
29+
run: dotnet publish -c Release -r linux-arm64 --property:PublishDir=bin/publish_dist/linux-arm64/ -p:PublishSingleFile=true --self-contained true
3030
- name: Publish for linux-arm
31-
run: dotnet publish -c Release -r linux-arm -o bin/publish_dist/linux-arm/ -p:PublishSingleFile=true --self-contained true
31+
run: dotnet publish -c Release -r linux-arm --property:PublishDir=bin/publish_dist/linux-arm/ -p:PublishSingleFile=true --self-contained true

0 commit comments

Comments
 (0)