From e1cb508f243a8e061087006d6fd69bd99c7bac76 Mon Sep 17 00:00:00 2001 From: "Michael Hawker MSFT (XAML Llama)" <24302614+michael-hawker@users.noreply.github.com> Date: Fri, 27 Oct 2023 12:10:41 -0700 Subject: [PATCH] Fix line continuation in build.yml Issue introduced in #503 as attempted fix/follow-on to #485 --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6aad83a8c..51a9b3f08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -168,7 +168,8 @@ jobs: - name: Push packages (main) if: ${{ github.ref == 'refs/heads/main' }} run: | - dotnet nuget update source LabsFeed --username dummy --password ${{ secrets.DEVOPS_PACKAGE_PUSH_TOKEN }} ` + dotnet nuget update source LabsFeed ` + --username dummy --password ${{ secrets.DEVOPS_PACKAGE_PUSH_TOKEN }} dotnet nuget push "**/*.nupkg" --api-key dummy --source LabsFeed --skip-duplicate # Run tests