From a84bf1ec92a4eef714db3857b84b2b574463372a Mon Sep 17 00:00:00 2001 From: "Max P." Date: Mon, 26 May 2025 17:15:47 +0200 Subject: [PATCH] chore(action): add delay to ensure environment readiness - Introduces a 5-second sleep step for better environment stability - Aims to prevent issues caused by unready environments during execution --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 7b602a8..090bf0b 100644 --- a/action.yml +++ b/action.yml @@ -32,10 +32,11 @@ inputs: runs: using: "composite" steps: - - name: Print action path + - name: Sleep for 5 seconds shell: bash run: | - echo "Action path: ${{ github.action_path }}" + echo "Sleeping for 5 seconds to ensure the environment is ready..." + sleep 5 - name: Fetch release from Gitea shell: bash