From 763fcb02b89ae8e2149127f420bb5d9ca1594ccc Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Tue, 19 Sep 2023 09:15:30 -0400
Subject: [PATCH] SL-19242: Move comments out of YAML parameter text.

---
 .github/workflows/build.yaml | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index cbdbac65cdf..bb1b8bb08b4 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -321,20 +321,20 @@ jobs:
         with:
           input-path: artifacts
           output-path: assets
-          exclude: |
-            # The *-app artifacts are for use only by the signing and
-            # packaging steps. Once we've generated signed installers, we no
-            # longer need them, and we CERTAINLY don't want to publish
-            # thousands of individual files as separate URLs.
+          # The *-app artifacts are for use only by the signing and
+          # packaging steps. Once we've generated signed installers, we no
+          # longer need them, and we CERTAINLY don't want to publish
+          # thousands of individual files as separate URLs.
+          exclude: |-
             Windows-app
             macOS-app
-          prefix: |
-            # Use just "Windows" or "macOS" prefix because these are the only
-            # artifacts in which we expect files from both platforms with
-            # colliding names (e.g. autobuild-package.xml). release-artifacts
-            # normally resolves collisions by prepending the artifact name, so
-            # when we anticipate collisions, it's good to keep the prefix
-            # short and sweet.
+          # Use just "Windows" or "macOS" prefix because these are the only
+          # artifacts in which we expect files from both platforms with
+          # colliding names (e.g. autobuild-package.xml). release-artifacts
+          # normally resolves collisions by prepending the artifact name, so
+          # when we anticipate collisions, it's good to keep the prefix
+          # short and sweet.
+          prefix: |-
             Windows-metadata=Windows
             macOS-metadata=macOS
 
-- 
GitLab