Skip to content

Commit 6f9ea7f

Browse files
committed
moving wait
1 parent f3c58cd commit 6f9ea7f

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/build_and_deploy.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -436,20 +436,27 @@ jobs:
436436
--title "Release ${{ needs.Generate-tag.outputs.tag }}" \
437437
--notes-file release_notes.md
438438
439-
update-release:
439+
wait:
440440
name: Update Release with Staging Info
441441
runs-on: ubuntu-latest
442442
needs: [Generate-tag,release-tag]
443+
444+
steps:
445+
- name: Wait
446+
run: |
447+
sleep 10
448+
449+
update-release:
450+
name: Update Release with Staging Info
451+
runs-on: ubuntu-latest
452+
needs: [Generate-tag,release-tag,wait]
443453
permissions:
444454
contents: write
445455
actions: write
446456
environment:
447457
name: staging
448458
url: https://${{ vars.DOMAIN_NAME }}
449459
steps:
450-
- name: Wait
451-
run: |
452-
sleep 10
453460
- name: Checkout
454461
uses: actions/checkout@v5
455462

0 commit comments

Comments
 (0)