Skip to content

Commit b9902ed

Browse files
committed
fix(docker-publish): correct output redirection syntax
* Fixed the output redirection in the GitHub Actions workflow to properly quote the GITHUB_OUTPUT variable. * Updated README.md to link directly to docker-compose examples for better clarity.
1 parent e53df4b commit b9902ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/action-docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
shortnamearray=$(cat "shortnamearray.json")
5050
echo "${shortnamearray}"
51-
echo -n "matrix=${shortnamearray}" >> ${GITHUB_OUTPUT}
51+
echo -n "matrix=${shortnamearray}" >> "${GITHUB_OUTPUT}"
5252
5353
generate-docker-compose:
5454
name: Generate docker-compose.yml files

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For a list of available game servers visit [linuxgsm.com](https://linuxgsm.com)
2121

2222
### docker-compose
2323

24-
Here is an example docker-compose configuration for the "csgoserver" using the image `gameservermanagers/gameserver:csgo`. Please note that the ports may vary depending on the specific game server. More docker-compose examples are available [here](https://github.com/GameServerManagers/docker-gameserver/tree/main/docker-compose).
24+
Here is an example docker-compose configuration for the "csgoserver" using the image `gameservermanagers/gameserver:csgo`. Please note that the ports may vary depending on the specific game server. More docker-compose examples are available [docker-compose examples](https://github.com/GameServerManagers/docker-gameserver/tree/main/docker-compose).
2525

2626
``` yaml
2727
version: '3.4'

0 commit comments

Comments
 (0)