mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-09 08:55:13 -04:00
Co-authored-by: Luis (LT) Carbonell <lt.carbonell@hashicorp.com>
This commit is contained in:
parent
ef97ba7518
commit
a2978a63f2
1 changed files with 4 additions and 3 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
|
@ -394,7 +394,7 @@ jobs:
|
|||
|
||||
hcp-image:
|
||||
if: |
|
||||
needs.setup.outputs.is-ent-branch == 'true' &&
|
||||
needs.setup.outputs.is-ent-branch == 'true' && (
|
||||
needs.setup.outputs.workflow-trigger == 'schedule' ||
|
||||
( needs.setup.outputs.workflow-trigger == 'pull_request' &&
|
||||
(
|
||||
|
|
@ -402,13 +402,14 @@ jobs:
|
|||
contains(fromJSON(needs.setup.outputs.labels), 'hcp/test')
|
||||
)
|
||||
)
|
||||
)
|
||||
needs:
|
||||
- setup
|
||||
- artifacts-ent
|
||||
uses: ./.github/workflows/build-hcp-image.yml
|
||||
with:
|
||||
pull-request: ${{ needs.setup.outputs.workflow-trigger == 'pull_request' && github.event.pull_request.number || null }}
|
||||
branch: ${{ needs.setup.outputs.workflow-trigger == 'schedule' && 'main' || null }}
|
||||
pull-request: ${{ needs.setup.outputs.workflow-trigger == 'pull_request' && github.event.pull_request && github.event.pull_request.number || '' }}
|
||||
branch: ${{ needs.setup.outputs.workflow-trigger == 'schedule' && 'main' || '' }}
|
||||
create-aws-image: true
|
||||
create-azure-image: false
|
||||
hcp-environment: int
|
||||
|
|
|
|||
Loading…
Reference in a new issue