File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727 if : needs.checkEnv.outputs.usernameExists == 'true'
2828
2929 steps :
30- - uses : actions/checkout@v2
30+ - uses : actions/checkout@v3
3131 - run : |
3232 mkdir -p build/StandaloneWindows64
3333 touch build/StandaloneWindows64/steam-deploy-test.txt
Original file line number Diff line number Diff line change 1- FROM cm2network/steamcmd
2-
3- ENV STEAM_CMD="$STEAMCMDDIR/steamcmd.sh"
4-
5- ADD *.sh $STEAMCMDDIR
6-
7- USER root
8- RUN chown -vfR root:root $STEAMCMDDIR
9-
10- CMD "$STEAMCMDDIR/steam_deploy.sh"
1+ FROM steamcmd/steamcmd:latest
2+ COPY steam_deploy.sh /root/steam_deploy.sh
3+ ENTRYPOINT ["/root/steam_deploy.sh" ]
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ echo "# Test login #"
124124echo " #################################"
125125echo " "
126126
127- $STEAM_CMD +set_steam_guard_code " $steam_totp " +login " $steam_username " " $steam_password " +quit;
127+ steamcmd +set_steam_guard_code " $steam_totp " +login " $steam_username " " $steam_password " +quit;
128128
129129ret=$?
130130if [ $ret -eq 0 ]; then
@@ -150,7 +150,7 @@ echo "# Uploading build #"
150150echo " #################################"
151151echo " "
152152
153- $STEAM_CMD +login " $steam_username " " $steam_password " +quit || (
153+ steamcmd +login " $steam_username " " $steam_password " +run_app_build " $manifest_path " +quit || (
154154 echo " "
155155 echo " #################################"
156156 echo " # Errors #"
You can’t perform that action at this time.
0 commit comments