Skip to content

Commit

Permalink
ios: fix Invalid workflow file(2)
Browse files Browse the repository at this point in the history
  • Loading branch information
s1rius committed Dec 26, 2023
1 parent 321aca5 commit 2186b18
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- name: Build xcframework
working-directory: ./ios
run: b_ios.sh
run: |
chmod +x ./b_ios.sh
bash ./b_ios.sh
- name: Get last tag
run: |
Expand All @@ -47,7 +49,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.LATEST_TAG }}
name: apple:${{ env.LATEST_TAG }}
name: ${{ env.LATEST_TAG }}
files: |
./ios/build/*
Expand Down

0 comments on commit 2186b18

Please sign in to comment.