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: |
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