Skip to content

Commit

Permalink
ci: add a sleep before letting subsequent steps proceed. (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmctune authored Apr 17, 2024
1 parent 8f918c6 commit 4659c0c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/_compile_launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,9 @@ jobs:
if-no-files-found: error
retention-days: 1
overwrite: true

# when we upload the exe artifact, it can take a few moments for github to realize it's been uploaded.
# if subsequent jobs try to download this artifact too quickly, the step will fail. this is just an
# arbitrary amount of time to wait before letting any other steps continue.
- name: Sleep for 3 seconds
run: Start-Sleep -Seconds 3

0 comments on commit 4659c0c

Please sign in to comment.