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
This commit is contained in:
2025-05-26 17:15:47 +02:00
parent bc0ba18afb
commit a84bf1ec92

View File

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