Skip to content

Commit 23769fa

Browse files
committed
workflow syntax fix
1 parent 50f8535 commit 23769fa

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build-test-publish.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ jobs:
3737

3838
- name: Push NuGet Package(s) to nuget.org
3939
run: |
40-
dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" `
41-
--source https://api.nuget.org/v3/index.json `
42-
--api-key ${{ secrets.NUGET_API_KEY }} `
40+
dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" \
41+
--source https://api.nuget.org/v3/index.json \
42+
--api-key ${{ secrets.NUGET_API_KEY }} \
4343
--skip-duplicate
4444
4545
- name: Add GitHub Packages source
4646
run: |
47-
dotnet nuget add source `
48-
--username ${{ github.actor }} `
49-
--password ${{ secrets.GITHUB_TOKEN }} `
50-
--store-password-in-clear-text `
51-
--name github `
47+
dotnet nuget add source \
48+
--username ${{ github.actor }} \
49+
--password ${{ secrets.GITHUB_TOKEN }} \
50+
--store-password-in-clear-text \
51+
--name github \
5252
"https://nuget.pkg.github.com/${{ env.OWNER }}/index.json"
5353
5454
- name: Push NuGet Package(s) to GitHub
5555
run: |
56-
dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" `
57-
--source github `
58-
--api-key ${{ secrets.GITHUB_TOKEN }} `
56+
dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" \
57+
--source github \
58+
--api-key ${{ secrets.GITHUB_TOKEN }} \
5959
--skip-duplicate

0 commit comments

Comments
 (0)