Skip to content

Commit d0e7e3e

Browse files
authored
Merge pull request #2856 from kiwix/publish_on_kiwix
Moving playstore publishing job after download.kiwix.org .
2 parents 536ae33 + 5142c7f commit d0e7e3e

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,6 @@ jobs:
3131
- name: Set tag variable
3232
run: echo "TAG=$(echo ${GITHUB_REF:10})" >> $GITHUB_ENV
3333

34-
- name: Publish app to play store
35-
env:
36-
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
37-
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
38-
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }}
39-
run: ./gradlew publishReleaseBundle
40-
4134
- name: Publish app to download.kiwix.org
4235
env:
4336
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
@@ -49,10 +42,18 @@ jobs:
4942
cp $UNIVERSAL_RELEASE_APK kiwix-${TAG}.apk
5043
scp -P 30022 -vrp -i ssh_key -o StrictHostKeyChecking=no kiwix-${TAG}.apk [email protected]:/data/download/release/kiwix-android/
5144
52-
- name: Publish to github releases
53-
uses: ncipollo/release-action@v1
54-
with:
55-
artifacts: "app/build/outputs/apk/release/**"
56-
token: ${{ secrets.GITHUB_TOKEN }}
57-
draft: true
58-
prerelease: true
45+
- name: Publish to github releases
46+
uses: ncipollo/release-action@v1
47+
with:
48+
artifacts: "app/build/outputs/apk/release/**"
49+
token: ${{ secrets.GITHUB_TOKEN }}
50+
draft: true
51+
prerelease: true
52+
53+
54+
- name: Publish app to play store
55+
env:
56+
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
57+
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
58+
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }}
59+
run: ./gradlew publishReleaseBundle

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://github.com/kiwix/kiwix-android/blob/develop/Kiwix_icon_transparent_512x512.png" align="right" height='250' />
1+
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Kiwix_logo_v3.svg/512px-Kiwix_logo_v3.svg.png" align="right" height='250' />
22
<a href="https://play.google.com/store/apps/details?id=org.kiwix.kiwixmobile" target="_blank" align="left">
33
<img src="https://play.google.com/intl/en/badges/images/badge_new.png" alt="Get it on Google Play" height="30" />
44
</a>
@@ -79,7 +79,7 @@ Available communication channels:
7979
* [Web Public Chat channel](https://chat.kiwix.org)
8080
* [Email](mailto:[email protected])
8181
* [Mailing list](mailto:[email protected])
82-
* [Slack](https://kiwixoffline.slack.com): #android channel [Get an invite](https://join.slack.com/t/kiwixoffline/shared_invite/enQtOTUyMTg4NzMxMTM4LTU0MzYyZDliYjdmMDYzYWMzNDA0MDc4MWE5OGM0ODFhYjAxNWIxMjVjZTU4MTkyODJlZWFkMmQ2YTZkYTUzZDY)
82+
* [Slack](https://kiwixoffline.slack.com): #android channel [Get an invite](https://join.slack.com/t/kiwixoffline/shared_invite/zt-19s7tsi68-xlgHdmDr5c6MJ7uFmJuBkg)
8383
* IRC: #kiwix on irc.freenode.net
8484

8585
For more information, please refer to

0 commit comments

Comments
 (0)