Skip to content

Commit

Permalink
build base when building all
Browse files Browse the repository at this point in the history
  • Loading branch information
ships committed Feb 19, 2024
1 parent e95dced commit 04af748
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ecrbuild-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ on:
required: true

jobs:
build-base:
uses: ./.github/workflows/ecrbuild-template.yml
secrets:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

build-core:
uses: ./.github/workflows/ecrbuild-template.yml
needs:
- build-base
with:
package: core
secrets:
Expand All @@ -21,6 +29,8 @@ jobs:

build-intg-submissions:
uses: ./.github/workflows/ecrbuild-template.yml
needs:
- build-base
with:
package: integration-submissions
secrets:
Expand All @@ -29,6 +39,8 @@ jobs:

build-jobs:
uses: ./.github/workflows/ecrbuild-template.yml
needs:
- build-base
with:
package: jobs
secrets:
Expand Down

0 comments on commit 04af748

Please sign in to comment.