File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ jobs:
4242 git push origin ${{ env.VERSION }}
4343 git push origin release/${{ env.VERSION }}
4444
45- # build-android:
46- # name: 'Build Android'
47- # needs: [bump-version]
48- # uses: ./.github/workflows/build-android.yml
49- # secrets: inherit
50- # with:
51- # ref: release/${{ inputs.version }}
45+ build-android :
46+ name : ' Build Android'
47+ needs : [bump-version]
48+ uses : ./.github/workflows/build-android.yml
49+ secrets : inherit
50+ with :
51+ ref : release/${{ inputs.version }}
5252
5353 # build-ios:
5454 # name: 'Build iOS'
6060
6161 publish-release :
6262 name : ' Publish Release'
63- needs : [bump-version]
63+ needs : [bump-version, build-android ]
6464 runs-on : ubuntu-latest
6565 env :
6666 MERGE_TARGET : master
9292 run : |
9393 gh release create \
9494 ${{ env.VERSION }} \
95+ ${{ env.APK_PATH }} \
96+ # ${{ env.APP_ARCHIVE_PATH }} \
9597 --title ${{ env.VERSION }} \
9698 --notes "Release ${{ env.VERSION }}" \
9799 || error_exit "Failed to create GitHub release."
You can’t perform that action at this time.
0 commit comments