fix/cicd #3

Merged
marcio.fernandes merged 62 commits from fix/cicd into master 2025-11-22 17:43:58 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit ade4f78f89 - Show all commits

View File

@@ -25,7 +25,7 @@ jobs:
run: | run: |
echo "1" echo "1"
# so output is shown # 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 ${{ 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 "::notice::fetching actions." echo "fetching actions."
# check arguments # check arguments
ERROR=0 ERROR=0
if [ -z "${RUNNER_TEMP}" ]; then if [ -z "${RUNNER_TEMP}" ]; then
echo "::notice::❌ ERROR: missing env RUNNER_TEMP" >&2 echo "❌ ERROR: missing env RUNNER_TEMP"
$ERROR=1 $ERROR=1
fi fi
if [ -z "${WORKSPACE}" ]; then if [ -z "${WORKSPACE}" ]; then
echo "::notice::❌ ERROR: missing env WORKSPACE" >&2 echo "❌ ERROR: missing env WORKSPACE"
$ERROR=1 $ERROR=1
fi fi