diff options
author | Aki <please@ignore.pl> | 2024-04-05 19:38:58 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-04-05 19:38:58 +0200 |
commit | 22207b852538d014720579b20dc35e03b5331250 (patch) | |
tree | 7bc718f9b74a23432ef269612a9ad75e0bb0abb1 | |
parent | fcdf91856f6f249ab307eaf7cfafe3d81118b187 (diff) | |
download | kurator-22207b852538d014720579b20dc35e03b5331250.zip kurator-22207b852538d014720579b20dc35e03b5331250.tar.gz kurator-22207b852538d014720579b20dc35e03b5331250.tar.bz2 |
Readded STEAM_GUARD to steamcmd invocation
With quotes the argument would get interpreted even if empty. At this
time I'm unsure how would login command interpret empty guard code, so
putting it w/o quotes.
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11c8c01..dbf9a1e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -69,7 +69,7 @@ steam: stage: deploy needs: ["build-linux", "package-linux", "package-windows"] script: - - steamcmd +login "$STEAM_USERNAME" "$STEAM_PASSWORD" +run_app_build "$CI_PROJECT_DIR/build-linux/gitlab.vdf" +quit + - steamcmd +login "$STEAM_USERNAME" "$STEAM_PASSWORD" $STEAM_GUARD +run_app_build "$CI_PROJECT_DIR/build-linux/gitlab.vdf" +quit artifacts: paths: - .steam_cache/ |