Browse Source
Fixes output redirection and URL parsing
Corrects output redirection in GitHub Actions workflows by enclosing the $GITHUB_OUTPUT variable in quotes, preventing potential issues with variable expansion.
Ensures proper URL parsing in workflows by enclosing the URL within quotes, addressing potential parsing errors.
Fixes #4696
pull/4854/head
Daniel Gibbs
4 months ago
Failed to extract signature
2 changed files with
3 additions and
3 deletions
.github/workflows/details-check.yml
.github/workflows/update-check.yml
@ -31,7 +31,7 @@ jobs:
run : |
shortnamearray=$(cat shortnamearray.json)
echo "${shortnamearray}"
echo -n "matrix=${shortnamearray}" >> $GITHUB_OUTPUT
echo -n "matrix=${shortnamearray}" >> " $GITHUB_OUTPUT"
details-check:
if : github.repository_owner == 'GameServerManagers'
@ -44,7 +44,7 @@ jobs:
steps:
- name : Download linuxgsm.sh
run : wget https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${GITHUB_REF#refs/heads/}/linuxgsm.sh; chmod +x linuxgsm.sh
run : wget " https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${GITHUB_REF#refs/heads/}/linuxgsm.sh" ; chmod +x linuxgsm.sh
- name : Install dependencies
run : sudo apt-get install libxml2-utils jq
@ -24,7 +24,7 @@ jobs:
steps:
- name : Download linuxgsm.sh
run : wget https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${GITHUB_REF#refs/heads/}/linuxgsm.sh; chmod +x linuxgsm.sh
run : wget " https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${GITHUB_REF#refs/heads/}/linuxgsm.sh" ; chmod +x linuxgsm.sh
- name : Install dependencies
run : sudo dpkg --add-architecture i386; sudo apt-get update;