Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillanacosta authored Dec 13, 2024
1 parent b186e38 commit 78533c6
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,7 @@ jobs:
path: temp-artifacts
- name: Move downloaded artifacts to external-dev
run: |
ls temp-artifacts
for file in temp-artifacts/*-ext.owl; do
base_file=$(basename "$file")
if [ -f "external-dev/$base_file" ]; then
echo "Overwriting existing file: external-dev/$base_file"
else
echo "File does not exist in external-dev: external-dev/$base_file"
fi
mv -f "$file" "external-dev/$base_file"
echo "Moved: $file to external-dev/$base_file"
done
find temp-artifacts -type f -exec mv {} external-dev/ \;
rm -rf temp-artifacts/*
- name: Commit changed OWL files
run: |
Expand Down

0 comments on commit 78533c6

Please sign in to comment.