Skip to content

Commit

Permalink
chore(🍏): fix ci (#2848)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon authored Dec 30, 2024
1 parent 64f88d5 commit 1e2ef33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-skia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ jobs:
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: skia-ios-xcframeworks
name: skia-apple-xcframeworks
path: |
./packages/skia/libs/apple/*.xcframework
6 changes: 3 additions & 3 deletions packages/skia/scripts/workflow-copy-libs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const androidFiles = [
"libskunicode_core.a",
"libskunicode_icu.a",
];
const iosFiles = [
const appleFiles = [
"libskia.xcframework",
"libskshaper.xcframework",
"libsvg.xcframework",
Expand Down Expand Up @@ -73,7 +73,7 @@ destinations.forEach((d, i) => {
copyFiles(sources[i], "./libs/android/" + d, androidFiles);
});

console.log("Copying ios files...");
copyFiles("skia-ios-xcframeworks", "./libs/ios", iosFiles);
console.log("Copying Apple files...");
copyFiles("skia-apple-xcframeworks", "./libs/apple", appleFiles);

console.log("Done copying artifacts.");

0 comments on commit 1e2ef33

Please sign in to comment.