Skip to content

Commit

Permalink
fix: action wait for rollout, default timeout of 10ish min should be …
Browse files Browse the repository at this point in the history
…fine
  • Loading branch information
irishgordo committed Feb 4, 2025
1 parent 263b3e7 commit 3060b50
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
update:
timeout-minutes: 10
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down Expand Up @@ -75,4 +75,8 @@ jobs:

- name: Deploy
if: github.event_name != 'pull_request'
run: kubectl rollout restart deployment gordogopherhole --namespace=default
run: kubectl rollout restart deployment gordogopherhole --namespace=default

- name: Wait for rollout to finish
if: github.event_name != 'pull_request'
run: kubectl rollout status deployment gordogopherhole --namespace=default

0 comments on commit 3060b50

Please sign in to comment.