From b72f81ab5b79bd86856bd46ad99a540fa082a4de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 20:57:27 -0400 Subject: [PATCH] ci: fixup update appveyor image workflow (#37684) Co-authored-by: John Kleinschmidt --- .github/workflows/update_appveyor_image.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_appveyor_image.yml b/.github/workflows/update_appveyor_image.yml index 08644e457176..05b84c5ec553 100644 --- a/.github/workflows/update_appveyor_image.yml +++ b/.github/workflows/update_appveyor_image.yml @@ -40,7 +40,9 @@ jobs: if: ${{ env.APPVEYOR_IMAGE_VERSION }} uses: mikefarah/yq@1c7dc0e88aad311c89889bc5ce5d8f96931a1bd0 # v4.27.2 with: - cmd: yq '.image = "${{ env.APPVEYOR_IMAGE_VERSION }}"' "appveyor.yml" > "appveyor2.yml" + cmd: | + yq '.image = "${{ env.APPVEYOR_IMAGE_VERSION }}"' "appveyor.yml" > "appveyor2.yml" + yq '.image = "${{ env.APPVEYOR_IMAGE_VERSION }}"' "appveyor-woa.yml" > "appveyor-woa2.yml" - name: (Optionally) Generate Commit Diff if: ${{ env.APPVEYOR_IMAGE_VERSION }} run: | @@ -66,4 +68,5 @@ jobs: delete-branch: true title: 'build: update appveyor image to latest version' body: | - This PR updates appveyor.yml to the latest baked image, ${{ env.APPVEYOR_IMAGE_VERSION }}. \ No newline at end of file + This PR updates appveyor.yml to the latest baked image, ${{ env.APPVEYOR_IMAGE_VERSION }}. + Notes: none \ No newline at end of file