Actions Demo
Some checks failed
godot-ci export / Prepare Build Assets (push) Successful in 1m18s
godot-ci export / Linux Export (push) Successful in 43s
godot-ci export / Windows Export (push) Successful in 50s
godot-ci export / Steam Publish (push) Failing after 55s

This commit is contained in:
2025-07-07 08:08:34 -07:00
parent 174a12d7cb
commit 5a2bf1628b
3 changed files with 10 additions and 2 deletions

View File

@ -26,6 +26,8 @@ jobs:
echo "No export template download link provided, cancelling build"
echo "Please set the EXPORT_TEMPLATE_DOWNLOAD_LINK secret in Gitea"
exit 1
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
@ -180,18 +182,24 @@ jobs:
echo "No Steam Username variable, cancelling build"
echo "Please set the STEAM_BUILD_USERNAME variable in Gitea"
exit 1
else
echo "Found STEAM_BUILD_USERNAME"
fi
if [ -z "${{ secrets.STEAM_BUILD_PASSWORD }}" ]; then
echo "No Steam Password secret, cancelling build"
echo "Please set the STEAM_BUILD_PASSWORD secret in Gitea"
exit 1
else
echo "Found STEAM_BUILD_PASSWORD"
fi
if [ -z "${{ secrets.STEAM_GUARD_CODE }}" ]; then
echo "No Steam Guard Code secret, cancelling build"
echo "Please set the STEAM_GUARD_CODE secret in Gitea"
exit 1
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