Skip to content

Commit

Permalink
Merge pull request #5145 from richardcase/ami_workflow_sequentialjobs
Browse files Browse the repository at this point in the history
🌱 fix: run ami builds sequentially
  • Loading branch information
richardcase authored Oct 9, 2024
2 parents d6ed1de + d6337fc commit a36900a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-ami.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ permissions:
jobs:
buildandpublish:
strategy:
matrix:
target: ['ubuntu-2204', 'ubuntu-2404', 'flatcar', 'rhel-8']
matrix:
target: ['ubuntu-2204', 'ubuntu-2404', 'flatcar', 'rhel-8']
max-parallel: 1
fail-fast: false
name: Build and publish CAPA AMIs
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit a36900a

Please sign in to comment.