Skip to content

Commit

Permalink
🚧 progress: Fix server configuration in GHA build workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Jul 23, 2024
1 parent 98fde39 commit 6f1cce7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci:build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ jobs:
- name: Configure server
id: configure-server
run: |

Check failure on line 182 in .github/workflows/ci:build.yml

View workflow job for this annotation

GitHub Actions / Continuous integration (lint workflows)

shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects
echo "settings=$(cat settings.json)" >> "${GITHUB_OUTPUT}"
echo 'settings<<EOF' >> "${GITHUB_OUTPUT}"
cat settings.json >> "${GITHUB_OUTPUT}"
echo 'EOF' >> "${GITHUB_OUTPUT}"
- name: Run server
id: server
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci:build:image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ jobs:
- name: Configure server
id: configure-server
run: |

Check failure on line 144 in .github/workflows/ci:build:image.yml

View workflow job for this annotation

GitHub Actions / Continuous integration (lint workflows)

shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects
echo "settings=$(cat settings.json)" >> "${GITHUB_OUTPUT}"
echo 'settings<<EOF' >> "${GITHUB_OUTPUT}"
cat settings.json >> "${GITHUB_OUTPUT}"
echo 'EOF' >> "${GITHUB_OUTPUT}"
- name: Run server
env:
Expand Down

0 comments on commit 6f1cce7

Please sign in to comment.