From f57c444762a32857b4fb9ac45825cc9617b8b8f9 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Fri, 6 Jun 2025 13:09:42 +0200 Subject: [PATCH] ci: fix env variables for gitea --- .gitea/plugin_repo_tests/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/plugin_repo_tests/action.yml b/.gitea/plugin_repo_tests/action.yml index 181541d..649d6ca 100644 --- a/.gitea/plugin_repo_tests/action.yml +++ b/.gitea/plugin_repo_tests/action.yml @@ -39,15 +39,15 @@ runs: cd ../ # get the plugin repository name from the installed directory # PLUGIN_REPO_NAME=$(basename ${{ inputs.BEC_PLUGIN_REPO_URL }} .git) - # echo "PLUGIN_REPO_NAME=${PLUGIN_REPO_NAME}" >> $GITHUB_ENV + # echo "PLUGIN_REPO_NAME=${PLUGIN_REPO_NAME}" >> $GITEA_ENV # echo "Plugin repository name: $PLUGIN_REPO_NAME" # if ! find ./_checkout_/${PLUGIN_REPO_NAME}/tests -mindepth 1 -type f -name '*.py' | grep -q .; then # echo "No tests found. Skipping pytest." - # echo "skip_tests=true" >> $GITHUB_OUTPUT + # echo "skip_tests=true" >> $GITEA_OUTPUT # else # echo "Tests found. Proceeding with pytest." - # echo "skip_tests=false" >> $GITHUB_OUTPUT + # echo "skip_tests=false" >> $GITEA_OUTPUT # fi - name: Setup Python