ci: Correctly upload to playstore

pull/470/head
krille-chan 2 years ago
parent 2f46181398
commit 577864df24
No known key found for this signature in database

@ -80,10 +80,9 @@ jobs:
use_lxd: ${{ matrix.os == 'ubuntu-18.04' }}
- name: Promote Snap
env:
SNAPCRAFT_TOKEN: ${{ secrets.SNAPCRAFT_TOKEN }}
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}
run: |
echo $SNAPCRAFT_TOKEN >> snapcrafttoken.txt
snapcraft login --with snapcrafttoken.txt
snapcraft login
RELEASE_TYPE=$(echo "${{ github.ref }}" | awk -F"/" '{print $3}')
if [ "$RELEASE_TYPE" = "rc" ]; then
snapcraft promote fluffychat --from-channel edge --to-channel candidate
@ -129,6 +128,7 @@ jobs:
cd android
bundle install
bundle update fastlane
bundle exec fastlane deploy_internal_test
RELEASE_TYPE=$(echo "${{ github.ref }}" | awk -F"/" '{print $3}')
if [ "$RELEASE_TYPE" = "rc" ]; then
bundle exec fastlane deploy_candidate

@ -49,6 +49,6 @@ platform :android do
end
lane :deploy_release do
upload_to_play_store(track: 'beta', track_promote_to: "production", deactivate_on_promote: false, skip_upload_changelogs: true)
upload_to_play_store(track: 'internal', track_promote_to: "production", deactivate_on_promote: false, skip_upload_changelogs: true)
end
end

Loading…
Cancel
Save