Skip to content

Commit b7b834f

Browse files
Revert "tmp: test release without any build"
This reverts commit 279a5cc.
1 parent 4d28e0c commit b7b834f

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/release.yml

+10-8
Original file line numberDiff line numberDiff 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'
@@ -60,7 +60,7 @@ jobs:
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
@@ -92,6 +92,8 @@ jobs:
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."

0 commit comments

Comments
 (0)