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

This commit is contained in:
2025-11-22 17:25:43 +00:00
parent 49f63a8656
commit ade4f78f89
2 changed files with 4 additions and 4 deletions

View File

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

View File

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