Skip to content

Commit

Permalink
Only match .yaml files in update-version.sh (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass authored Sep 22, 2023
1 parent 9773085 commit 264edf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ function sed_runner() {
sed -i.bak ''"$1"'' $2 && rm -f ${2}.bak
}

for FILE in .github/workflows/*.{yaml,yml}; do
for FILE in .github/workflows/*.yaml; do
sed_runner "/rapidsai\/shared-action-workflows/ s/@.*/@branch-${NEXT_SHORT_TAG}/g" "${FILE}"
done

0 comments on commit 264edf7

Please sign in to comment.