Skip to content

Commit

Permalink
fix github workflow error
Browse files Browse the repository at this point in the history
  • Loading branch information
debugly committed Nov 7, 2023
1 parent c93c223 commit bb5c895
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ios-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,16 @@ jobs:
- name: Zip Frameworks
run: |
dst=IJKMediaPlayerKit-${{ env.TAG }}
cp CHANGELOG.md $dst
cp README.md $dst
cp COPYING.LGPLv2.1 $dst
mkdir -p ${dst}/iOS
cp -pPR examples/ios/build/Release-ios/* $dst/iOS
mkdir -p ${dst}/macOS
cp -pPR examples/macos/build/Release/IJKMediaPlayerKit/* $dst/macOS
cp CHANGELOG.md $dst
cp README.md $dst
cp COPYING.LGPLv2.1 $dst
cd $dst
mv COPYING.LGPLv2.1 LICENSE
zip -ryq IJKMediaPlayerKit-${{ env.TAG }}.zip ./*
Expand Down

0 comments on commit bb5c895

Please sign in to comment.