Remove var test
This commit is contained in:
@ -27,6 +27,9 @@ jobs:
|
|||||||
echo "Please set the EXPORT_TEMPLATE_DOWNLOAD_LINK secret in Gitea"
|
echo "Please set the EXPORT_TEMPLATE_DOWNLOAD_LINK secret in Gitea"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "Found EXPORT_TEMPLATE_DOWNLOAD_LINK"
|
||||||
|
fi
|
||||||
|
|
||||||
# By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
|
# By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
|
||||||
# Should make my docker image for this step in the future
|
# Should make my docker image for this step in the future
|
||||||
@ -181,18 +184,27 @@ jobs:
|
|||||||
echo "Please set the STEAM_BUILD_USERNAME variable in Gitea"
|
echo "Please set the STEAM_BUILD_USERNAME variable in Gitea"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "Found STEAM_BUILD_USERNAME"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -z "${{ secrets.STEAM_BUILD_PASSWORD }}" ]; then
|
if [ -z "${{ secrets.STEAM_BUILD_PASSWORD }}" ]; then
|
||||||
echo "No Steam Password secret, cancelling build"
|
echo "No Steam Password secret, cancelling build"
|
||||||
echo "Please set the STEAM_BUILD_PASSWORD secret in Gitea"
|
echo "Please set the STEAM_BUILD_PASSWORD secret in Gitea"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "Found STEAM_BUILD_PASSWORD"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -z "${{ secrets.STEAM_GUARD_CODE }}" ]; then
|
if [ -z "${{ secrets.STEAM_GUARD_CODE }}" ]; then
|
||||||
echo "No Steam Guard Code secret, cancelling build"
|
echo "No Steam Guard Code secret, cancelling build"
|
||||||
echo "Please set the STEAM_GUARD_CODE secret in Gitea"
|
echo "Please set the STEAM_GUARD_CODE secret in Gitea"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "Found STEAM_GUARD_CODE"
|
||||||
|
fi
|
||||||
|
|
||||||
# I can't use the c2msnetwork/steamcmd bc I need to instlal git and nodejs for the actions/checkout@v4 to work
|
# I can't use the c2msnetwork/steamcmd bc I need to instlal git and nodejs for the actions/checkout@v4 to work
|
||||||
# and I would need root access to install them, which root breaks saving the cache file
|
# and I would need root access to install them, which root breaks saving the cache file
|
||||||
|
|||||||
Reference in New Issue
Block a user