Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tasks/create.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright 2024 Defense Unicorns
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial


includes:
- common: https://raw.githubusercontent.com/defenseunicorns/uds-common/v1.11.2/tasks/create.yaml

Expand Down Expand Up @@ -80,8 +79,11 @@ tasks:
default: ${CREATE_OPTIONS}
description: "Additional options passed in when creating Zarf packages. For example: --skip-sbom"
actions:
# Note: Maru does not support `or` for this conditional task so we just duplicate it for each case
- task: pepr-build
if: ${{ eq .inputs.layer "standard" }}
- task: pepr-build
if: ${{ eq .inputs.layer "base" or eq .inputs.layer "standard" }}
if: ${{ eq .inputs.layer "base" }}
- description: "Create the UDS Core Zarf Package"
task: common:package
with:
Expand Down