Skip to content

Commit

Permalink
Merge pull request #7 from kadu-v/feature/version
Browse files Browse the repository at this point in the history
πŸš‘ : Fix destination dir of cp
  • Loading branch information
kadu-v authored Nov 1, 2024
2 parents d18c13b + 9f6c4ea commit fe9de0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_static_libraries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ jobs:
run: |
mkdir executorch-prebuilt-${TAG}
touch executorch-prebuilt-${TAG}/.gitkeep
cp -r executorch-apple-debug/* executorch-prebuilt/
cp -r executorch-apple-release/* executorch-prebuilt/
cp -r executorch-android/* executorch-prebuilt
cp -r executorch-apple-debug/* executorch-prebuilt-${TAG}/
cp -r executorch-apple-release/* executorch-prebuilt-${TAG}/
cp -r executorch-android/* executorch-prebuilt-${TAG}/
zip -r release-${TAG}.zip executorch-prebuilt-${TAG}
- name: Upload release assets
Expand Down

0 comments on commit fe9de0f

Please sign in to comment.