weechatRN

Weechat relay client for iOS using websockets https://github.com/mhoran/weechatRN
git clone http://git.hanabi.in/repos/weechatRN.git
Log | Files | Refs | README | LICENSE

commit 02e047a30bae848cffc2c8e0c46a5f9294e3ccbc
parent 5acec68cc8bdd86d5c26e6474f55ac08617ad3ff
Author: Matthew Horan <matt@matthoran.com>
Date:   Fri, 11 Dec 2020 11:12:04 -0500

Use fastlane directly to upload to TestFlight

Diffstat:
M.github/workflows/publish.yml | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml @@ -19,11 +19,11 @@ jobs: expo-password: ${{secrets.EXPO_CLI_PASSWORD}} - run: yarn install - run: expo build:ios --non-interactive --apple-id ${{secrets.EXPO_APPLE_ID}} + - run: curl -O `expo url:ipa` + - run: gem install fastlane -N + - run: fastlane pilot upload env: - EXPO_APPLE_PASSWORD: ${{secrets.EXPO_APPLE_PASSWORD}} - FASTLANE_SESSION: ${{secrets.FASTLANE_SESSION}} - - run: expo upload:ios --non-interactive --app-name "WeechatRemote" --apple-id ${{secrets.EXPO_APPLE_ID}} - env: - EXPO_APPLE_PASSWORD: ${{secrets.EXPO_APPLE_PASSWORD}} + FASTLANE_USER: ${{secrets.EXPO_APPLE_ID}} + FASTLANE_PASSWORD: ${{secrets.EXPO_APPLE_PASSWORD}} FASTLANE_SESSION: ${{secrets.FASTLANE_SESSION}} FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD}}