ci: Correctly upload to playstore

This commit is contained in:
krille-chan 2023-07-25 06:30:22 +02:00
parent 2f46181398
commit 577864df24
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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