Skip to content

Commit

Permalink
Fix pipeline to target correct artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
oldtimerza committed Jul 4, 2020
1 parent e6d1280 commit 613229a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Get into Meerkat
run: cd Meerkat
- name: Publish
run: dotnet publish -c release -o ./bin/Release/meerkat --self-contained false
run: |
cd Meerkat
dotnet publish -c release -o ./bin/Release/meerkat --self-contained false
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bin/Release/meerkat/Meerkat.exe
file: Meerkat/bin/Release/meerkat/Meerkat.exe
asset_name: Meerkat-$tag.exe
tag: ${{ github.ref }}
overwrite: true

0 comments on commit 613229a

Please sign in to comment.