modified: .gitea/workflows/fetch-actions.sh
Some checks failed
Casa Home Assistant CI/CD Pipeline (testing) / build (push) Failing after 12s

This commit is contained in:
2025-11-22 17:23:19 +00:00
parent 57327c1666
commit 49f63a8656

View File

@@ -1,17 +1,17 @@
set -euo pipefail set -euo pipefail
echo "fetching actions." >&2 echo "::notice::fetching actions."
# check arguments # check arguments
ERROR=0 ERROR=0
if [ -z "${RUNNER_TEMP}" ]; then if [ -z "${RUNNER_TEMP}" ]; then
echo "❌ ERROR: missing env RUNNER_TEMP" >&2 echo "::notice::❌ ERROR: missing env RUNNER_TEMP" >&2
$ERROR=1 $ERROR=1
fi fi
if [ -z "${WORKSPACE}" ]; then if [ -z "${WORKSPACE}" ]; then
echo "❌ ERROR: missing env WORKSPACE" >&2 echo "::notice::❌ ERROR: missing env WORKSPACE" >&2
$ERROR=1 $ERROR=1
fi fi