Skip to content

Commit

Permalink
Fix checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillanacosta authored Dec 13, 2024
1 parent 2c3d6b3 commit 298ef5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,14 @@ jobs:
run: |
for file in temp-artifacts/*-ext.owl; do
if [ -f "$file" ]; then
mv "$file" external-dev/
mv "$file" external-dev/$file
echo $file
fi
done
- name: Commit changed OWL files
run: |
git config --local user.email "[email protected]"
git config --local user.name "Slimmer bot"
git checkout "${{ github.ref_name }}" && git pull
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 298ef5a

Please sign in to comment.