We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79dcf1c commit 16cb628Copy full SHA for 16cb628
.github/workflows/index-render-template.yaml
@@ -58,7 +58,7 @@ jobs:
58
- name: Save generated changes
59
uses: actions/upload-artifact@v4
60
with:
61
- name: catalog-${{ matrix.version }}
+ name: ${{ matrix.version }}
62
path: .konflux/olm-catalog/index/${{ matrix.version }}
63
64
final-commit:
@@ -73,12 +73,7 @@ jobs:
73
- name: Apply downloaded changes
74
run: |
75
set -x
76
- ls -al downloaded-artifacts/
77
- for dir in downloaded-artifacts/catalog-*; do
78
- version=$(basename "$dir" | sed 's/catalog-//')
79
- mkdir -p .konflux/olm-catalog/index/$version
80
- cp -r "$dir"/* .konflux/olm-catalog/index/$version/
81
- done
+ cp -rvf downloaded-artifacts/ .konflux/olm-catalog/index/
82
- name: Commit Changes and Generate PR
83
84
git config user.name openshift-pipelines-bot
0 commit comments