From b5f1d595d85fa1bcfa4284e9a309ce89d418d3ac Mon Sep 17 00:00:00 2001 From: "Max P." Date: Mon, 26 May 2025 17:18:31 +0200 Subject: [PATCH] refactor(action): reduce sleep duration and remove verbose exports - Decreases sleep duration from 5 seconds to 3 seconds for efficiency - Removes unnecessary verbose export statements to streamline scripts --- action.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index 090bf0b..bb4932c 100644 --- a/action.yml +++ b/action.yml @@ -32,16 +32,15 @@ inputs: runs: using: "composite" steps: - - name: Sleep for 5 seconds + - name: Sleep for 3 seconds shell: bash run: | - echo "Sleeping for 5 seconds to ensure the environment is ready..." - sleep 5 + echo "Sleeping for 3 seconds to ensure the environment is ready..." + sleep 3 - name: Fetch release from Gitea shell: bash run: | - export VERBOSE="true" "${{ github.action_path }}/scripts/fetch-gitea-release.sh" env: GITEA_TOKEN: ${{ inputs.gitea_token }} @@ -54,7 +53,6 @@ runs: shell: bash run: | TAG_NAME=${{ inputs.tag_name }} - export VERBOSE="true" export TAG="$TAG_NAME" export WORKDIR="$GT_RSA_RELEASE_DIR" export GITHUB_OWNER="${{ inputs.github_owner }}"