From b167a699765f5ce4f78581edf2f664d9d360f91a Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Sat, 14 Oct 2023 16:42:57 +0200 Subject: [PATCH] Fix YAML error for site release in CI/CD Fix the syntax error in the GitHub action script that was caused by improper multi-line YAML notation. This correction ensures the action can successfully parse and execute. --- .github/workflows/release.site.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.site.yaml b/.github/workflows/release.site.yaml index 80fae05e..c71e8f65 100644 --- a/.github/workflows/release.site.yaml +++ b/.github/workflows/release.site.yaml @@ -102,7 +102,7 @@ jobs: - name: "App: Deploy to S3" shell: bash - run: >- + run: |- declare web_output_dir if ! web_output_dir=$(cd app && node scripts/print-dist-dir.js --web); then echo 'Error: Could not determine distribution directory.'