@@ -50,17 +50,17 @@ jobs:
50
50
with :
51
51
ref : release/${{ inputs.version }}
52
52
53
- # build-ios:
54
- # name: 'Build iOS'
55
- # needs: [bump-version]
56
- # uses: ./.github/workflows/build-ios.yml
57
- # secrets: inherit
58
- # with:
59
- # ref: release/${{ inputs.version }}
53
+ build-ios :
54
+ name : ' Build iOS'
55
+ needs : [bump-version]
56
+ uses : ./.github/workflows/build-ios.yml
57
+ secrets : inherit
58
+ with :
59
+ ref : release/${{ inputs.version }}
60
60
61
61
publish-release :
62
62
name : ' Publish Release'
63
- needs : [bump-version, build-android]
63
+ needs : [bump-version, build-android, build-ios ]
64
64
runs-on : ubuntu-latest
65
65
env :
66
66
MERGE_TARGET : master
@@ -73,10 +73,10 @@ jobs:
73
73
with :
74
74
fetch-depth : 0 # fetch all history all branches and tags
75
75
76
- # - name: Download iOS App
77
- # uses: actions/download-artifact@v4
78
- # with:
79
- # name: empower-plant-react-native-ios
76
+ - name : Download iOS App
77
+ uses : actions/download-artifact@v4
78
+ with :
79
+ name : empower-plant-react-native-ios
80
80
81
81
- name : Download Android APK
82
82
uses : actions/download-artifact@v4
93
93
gh release create \
94
94
${{ env.VERSION }} \
95
95
${{ env.APK_PATH }} \
96
- # ${{ env.APP_ARCHIVE_PATH }} \
96
+ ${{ env.APP_ARCHIVE_PATH }} \
97
97
--title ${{ env.VERSION }} \
98
98
--notes "Release ${{ env.VERSION }}" \
99
99
|| error_exit "Failed to create GitHub release."
0 commit comments