Skip to content

Commit

Permalink
Merge pull request #21 from rotty3000/main
Browse files Browse the repository at this point in the history
avoid the error return because the script has 'set -ev' and will fail on any error
  • Loading branch information
rotty3000 authored Jan 29, 2025
2 parents ef31902 + ccb0e3f commit dfdadf5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/scripts/publish_helm_index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ yq -i '.entries.liferay[].urls[] |= sub("-(\d+\.\d+\.\d+)\.tgz", ":$1")' ${INDEX

# Copy the markdown files to the gh-pages branch
find . -name "*.md" -exec rm -f '{}' \;
mkdir ./docs 2>/dev/null
if [ ! -d ./docs ]; then
mkdir ./docs
]
cp -R ${SOURCE_DIR}/docs/* ./docs
cp -R ${SOURCE_DIR}/README.md .
git add --all
Expand Down

0 comments on commit dfdadf5

Please sign in to comment.