Skip to content

Commit

Permalink
Do not fail if .arc/validation_packages.yml does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
j-bauer authored Sep 20, 2024
1 parent 8706fce commit 7c1848b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion misc/Auto-DevOps.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ quality_report_generator:
- exists:
- .arc/validation_packages.yml
script:
- env
- |
if [ ! -e "${CI_PROJECT_DIR}/.arc/validation_packages.yml" ]; then
exit 0
fi
- |
cat << EOF > quality_reports.yml
stages:
Expand Down

0 comments on commit 7c1848b

Please sign in to comment.