Skip to content

Commit

Permalink
use correct output file
Browse files Browse the repository at this point in the history
  • Loading branch information
joejstuart committed Jul 22, 2024
1 parent f1aee73 commit ba1b630
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .tekton/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ spec:
value: "$(params.revision)"
- name: GIT_URL
value: "$(params.git-url)"
- name: OUTPUT_BUNDLE_LIST
- name: OUTPUT_TASK_BUNDLE_LIST
value: $(workspaces.source.path)/full-bundle-list
script: |
#!/bin/bash
Expand Down Expand Up @@ -175,7 +175,7 @@ spec:
workingDir: $(workspaces.source.path)/source
command: ["./hack/push-and-tag.sh"]
env:
- name: OUTPUT_BUNDLE_LIST
- name: OUTPUT_TASK_BUNDLE_LIST
value: $(workspaces.source.path)/full-bundle-list

volumes:
Expand Down
2 changes: 1 addition & 1 deletion hack/build-acceptable-bundles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -o pipefail
# Function to remove the sha and digest from the image name
# from: quay.io/konflux-ci/task1:0.1-1234@sha256:5678 to quay.io/konflux-ci/task1:0.1
strip_image_tag() {
echo "$1" | sed 's/\(:[^-]*\).*/\1/'
sed 's/\(:[^-]*\).*/\1/' <<< "$1"
}

# helps with debugging
Expand Down

0 comments on commit ba1b630

Please sign in to comment.