Add bom to repo (in case it doesn't exist)

This commit is contained in:
Kyle Dumont 2025-03-31 11:01:25 -04:00
parent 4d393daad9
commit 2ae37cc4c2

View File

@ -49,7 +49,8 @@ jobs:
- name: Update BOM
run: |
git diff --exit-code -- bom.csv
git add bom.csv
git diff --cached --exit-code -- bom.csv
if [ $? -eq 0 ]; then
echo "No BOM changes to commit."
else