Skip to content

Commit

Permalink
Fix issue with dotnet publish task
Browse files Browse the repository at this point in the history
  • Loading branch information
bijij committed Jan 21, 2021
1 parent 7f73d48 commit b1a69b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- uses: actions/setup-dotnet@v1
- name: Build Projects
run: dotnet build
- name: Publish CLI tool
run: |
dotnet publish -c Release -r win-x64 -p:PublishSingleFile=true --self-contained true -o build .\src\Bottom_NET.CLI\
dotnet publish -c Release -r linux-x64 -p:PublishSingleFile=true --self-contained true -o build .\src\Bottom_NET.CLI\
- name: Publish Windows CLI tool
run: dotnet publish -c Release -r win-x64 -p:PublishSingleFile=true --self-contained true -o build ./src/Bottom_NET.CLI
- name: Publish Linux CLI tool
run: dotnet publish -c Release -r linux-x64 -p:PublishSingleFile=true --self-contained true -o build ./src/Bottom_NET.CLI
- name: Create release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit b1a69b9

Please sign in to comment.