fix/cicd #3

Merged
marcio.fernandes merged 62 commits from fix/cicd into master 2025-11-22 17:43:58 +00:00
Showing only changes of commit 49f63a8656 - Show all commits

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