Skip to content

Commit

Permalink
ci: Fix bug in post deploy workflow (#2131)
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr authored Dec 11, 2023
1 parent a218fae commit 9a95d6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/post_deploy_agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
disable-sudo: false
egress-policy: audit
- name: Wait for APT to update
if: ${{ github.inputs.external_call }} # only wait if this workflow was called by another workflow
if: ${{ github.event.inputs.external_call }} # only wait if this workflow was called by another workflow
run: |
echo "Sleeping 5 minutes to wait for apt to update itself"
sleep 300
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
fetch-depth: 0

- name: Wait for YUM to update
if: ${{ github.inputs.external_call }} # only wait if this workflow was called by another workflow
if: ${{ github.event.inputs.external_call }} # only wait if this workflow was called by another workflow
run: |
echo "Sleeping 5 minutes to wait for yum to update itself"
sleep 300
Expand Down

0 comments on commit 9a95d6a

Please sign in to comment.