Skip to content

Commit

Permalink
Update artifact handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillanacosta authored Dec 13, 2024
1 parent f692e4e commit 351c495
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ jobs:
path: temp-artifacts
- name: Move downloaded artifacts to external-dev
run: |
mv temp-artifacts/* external-dev/
for file in temp-artifacts/external-dev/*-ext.owl; do
if [ -f "$file" ]; then
mv "$file" external-dev/
fi
done
- name: Commit changed OWL files
run: |
git config --local user.email "[email protected]"
Expand All @@ -93,4 +97,3 @@ jobs:
git add -f external-dev/*.owl
git commit -m "Actions - slim updated" || echo "No changes to commit."
git push || echo "Push failed."

0 comments on commit 351c495

Please sign in to comment.