Skip to content

Commit

Permalink
Fix YAML error for site release in CI/CD
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
undergroundwires committed Oct 19, 2023
1 parent 79b46bf commit 237d994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
Expand Down

0 comments on commit 237d994

Please sign in to comment.