Skip to content

Commit

Permalink
github: Fix bundle path in SSP repo
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Yarwood <lyarwood@redhat.com>
(cherry picked from commit 4f4ff9b)
  • Loading branch information
lyarwood committed Jul 19, 2023
1 parent 11f8232 commit 3126edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Install yq and use it to update each resource with an instancetype.kubevirt.io/common-instancetypes-version annotation
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O ./yq && chmod +X ./yq
for bundle in $(ls data/common-instancetypes-bundle/bundle*.yaml); do
for bundle in $(ls data/common-instancetypes-bundle/*.yaml); do
yq -i '.metadata.labels.["instancetype.kubevirt.io/common-instancetypes-version"]=env(VERSION)' ${bundle}
done
Expand Down

0 comments on commit 3126edd

Please sign in to comment.