Commit 94289d8 1 parent 51329f0 commit 94289d8 Copy full SHA for 94289d8
File tree 3 files changed +6
-13
lines changed
3 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 27
27
if : needs.checkEnv.outputs.usernameExists == 'true'
28
28
29
29
steps :
30
- - uses : actions/checkout@v2
30
+ - uses : actions/checkout@v3
31
31
- run : |
32
32
mkdir -p build/StandaloneWindows64
33
33
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 #"
124
124
echo " #################################"
125
125
echo " "
126
126
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;
128
128
129
129
ret=$?
130
130
if [ $ret -eq 0 ]; then
@@ -150,7 +150,7 @@ echo "# Uploading build #"
150
150
echo " #################################"
151
151
echo " "
152
152
153
- $STEAM_CMD +login " $steam_username " " $steam_password " +quit || (
153
+ steamcmd +login " $steam_username " " $steam_password " +run_app_build " $manifest_path " +quit || (
154
154
echo " "
155
155
echo " #################################"
156
156
echo " # Errors #"
You can’t perform that action at this time.
0 commit comments