s
Some checks failed
Casa Home Assistant CI/CD Pipeline (testing) / build (push) Failing after 14s

This commit is contained in:
2025-11-22 17:20:54 +00:00
parent 5e0879ee64
commit 57327c1666
2 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ jobs:
run: | run: |
echo "1" echo "1"
# so output is shown # so output is shown
stdbuf -oL -eL bash./.gitea/workflows/fetch-actions.sh bash ./.gitea/workflows/fetch-actions.sh
# mkdir -p ${{ runner.temp }}/gitea_src # mkdir -p ${{ runner.temp }}/gitea_src
# mkdir -p ${{ gitea.workspace }}/.gitea/limbo_actions # mkdir -p ${{ gitea.workspace }}/.gitea/limbo_actions

View File

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