remove StAC until fix
ci/woodpecker/manual/woodpecker Pipeline failed Details

See https://github.com/ValveSoftware/Source-1-Games/issues/5627 for more info
This commit is contained in:
Philipp 2024-04-19 13:54:11 +02:00 committed by Gitea
parent 7db50ae033
commit a35c93dc31
Signed by: Gitea
GPG Key ID: 5A09F9506519E10A
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ RUN \
# download plugins
wget -nv "https://github.com/dordnung/System2/releases/download/v3.3.2/system2.zip" -O system2.zip \
&& wget -nv "https://github.com/sapphonie/StAC-tf2/releases/download/v6.1.4/stac.zip" -O stac.zip \
&& wget -nv "https://github.com/sapphonie/sourcemod-nativevotes-updated/releases/download/workflow-build61/nativevotes_sm_1.11.zip" -O nativevotes.zip \
# && wget -nv "https://github.com/sapphonie/sourcemod-nativevotes-updated/releases/download/workflow-build61/nativevotes_sm_1.11.zip" -O nativevotes.zip \
&& wget -nv "https://github.com/ErikMinekus/sm-advertisements/releases/download/2.1.1/release.tar.gz" -O advertisements.tar.gz \
&& wget -nv "http://users.alliedmods.net/~kyles/builds/SteamWorks/SteamWorks-git132-linux.tar.gz" -O SteamWorks.tar.gz \
&& wget -nv "https://gitlab.com/Zipcore/Discord/-/raw/master/plugins/discord.smx" -O discord.smx \
@ -15,7 +15,7 @@ RUN \
&& wget -nv "https://forums.alliedmods.net/attachment.php?attachmentid=83286&d=1299423920" -O socket.zip \
# install plugins
&& unzip -o system2.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \
&& unzip -o stac.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \
# && unzip -o stac.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \
&& unzip -o nativevotes.zip -d "${SERVER_DIR}/tf/" \
&& tar xf advertisements.tar.gz -C "${SERVER_DIR}/tf/" \
&& tar xf SteamWorks.tar.gz -C "${SERVER_DIR}/tf/" \
@ -25,7 +25,7 @@ RUN \
&& mv soapbalancer.smx "${SERVER_DIR}/tf/addons/sourcemod/plugins/soapbalancer.smx" \
&& unzip -o socket.zip -d "${SERVER_DIR}/tf/" \
# clean everything up
&& rm system2.zip stac.zip nativevotes.zip advertisements.tar.gz SteamWorks.tar.gz socket.zip \
&& rm system2.zip nativevotes.zip advertisements.tar.gz SteamWorks.tar.gz socket.zip \
&& rm "${SERVER_DIR}/tf/addons/sourcemod/plugins/admin-flatfile.smx"
COPY server.cfg.template "${SERVER_DIR}/tf/cfg/server.cfg.template"