Skip to content

Commit

Permalink
Fix on workflow (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool authored Dec 12, 2024
1 parent 56511d9 commit 433b401
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/release-dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: dart-android-artifacts
path: |
jniLibs/arm64-v8a/
jniLibs/armeabi-v7a/
path: jniLibs/

build-ios-artifacts:
needs: install-dependencies
Expand Down Expand Up @@ -167,7 +165,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: dart-ios-artifacts
path: universal/libyttrium_dart_universal.dylib
path: universal/

create-github-release:
needs: [build-android-artifacts, build-ios-artifacts]
Expand All @@ -183,22 +181,20 @@ jobs:
uses: actions/download-artifact@v3
with:
name: dart-android-artifacts
path: |
jniLibs/arm64-v8a/
jniLibs/armeabi-v7a/
path: jniLibs/

# Download iOS artifacts
- name: Download iOS artifacts
uses: actions/download-artifact@v3
with:
name: dart-ios-artifacts
path: universal/libyttrium_dart_universal.dylib
path: universal/

# Create artifacts zip
- name: Create artifacts zip
run: |
zip -r android-artifacts.zip jniLibs/
zip ios-artifacts.zip universal/libyttrium_dart_universal.dylib
zip -r ios-artifacts.zip universal/
# Create GitHub Release
- name: Create Release
Expand Down

0 comments on commit 433b401

Please sign in to comment.