Skip to content

Commit

Permalink
misc(ci): Fix multi-line hub release command syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Kissaki committed Jun 4, 2023
1 parent 93db68e commit 5e71059
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
if-no-files-found: error
- name: Publish GitHub Release
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
run: hub release create \
--attach publish/win-x64/website-downloader.exe \
--attach publish/win-x64/website-downloader.pdb \
--attach publish/linux-x64/website-downloader \
--attach publish/linux-x64/website-downloader.pdb \
run: >
hub release create
--attach publish/win-x64/website-downloader.exe
--attach publish/win-x64/website-downloader.pdb
--attach publish/linux-x64/website-downloader
--attach publish/linux-x64/website-downloader.pdb
--message "${{ github.ref_name }}" "${{ github.ref_name }}"

0 comments on commit 5e71059

Please sign in to comment.