File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ jobs:
42
42
git push origin ${{ env.VERSION }}
43
43
git push origin release/${{ env.VERSION }}
44
44
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 }}
52
52
53
53
# build-ios:
54
54
# name: 'Build iOS'
60
60
61
61
publish-release :
62
62
name : ' Publish Release'
63
- needs : [bump-version]
63
+ needs : [bump-version, build-android ]
64
64
runs-on : ubuntu-latest
65
65
env :
66
66
MERGE_TARGET : master
92
92
run : |
93
93
gh release create \
94
94
${{ env.VERSION }} \
95
+ ${{ env.APK_PATH }} \
96
+ # ${{ env.APP_ARCHIVE_PATH }} \
95
97
--title ${{ env.VERSION }} \
96
98
--notes "Release ${{ env.VERSION }}" \
97
99
|| error_exit "Failed to create GitHub release."
You can’t perform that action at this time.
0 commit comments