Skip to content

Commit e1cb508

Browse files
Fix line continuation in build.yml
Issue introduced in #503 as attempted fix/follow-on to #485
1 parent 100d404 commit e1cb508

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ jobs:
168168
- name: Push packages (main)
169169
if: ${{ github.ref == 'refs/heads/main' }}
170170
run: |
171-
dotnet nuget update source LabsFeed --username dummy --password ${{ secrets.DEVOPS_PACKAGE_PUSH_TOKEN }} `
171+
dotnet nuget update source LabsFeed `
172+
--username dummy --password ${{ secrets.DEVOPS_PACKAGE_PUSH_TOKEN }}
172173
dotnet nuget push "**/*.nupkg" --api-key dummy --source LabsFeed --skip-duplicate
173174
174175
# Run tests

0 commit comments

Comments
 (0)