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 4be6dacc06f651871b416e367213c24c439d0890
parent 1b0a5aa26e453b50588420528afbd99691391680
Author: Matthew Horan <matt@matthoran.com>
Date:   Wed, 17 Nov 2021 09:46:03 -0500

Merge pull request #41 from mhoran/fix-workflow

Cache Expo installation so that it's available for other jobs
Diffstat:
M.github/workflows/publish.yml | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml @@ -3,11 +3,12 @@ name: Publish to TestFlight on: release: types: [created] + workflow_dispatch: jobs: build-app: name: Build iOS app - runs-on: macos-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Node @@ -19,6 +20,7 @@ jobs: uses: expo/expo-github-action@v6 with: expo-version: 4.x + expo-cache: true username: ${{secrets.EXPO_CLI_USERNAME}} password: ${{secrets.EXPO_CLI_PASSWORD}} - run: yarn install @@ -28,7 +30,7 @@ jobs: EXPO_APPLE_PASSWORD: ${{secrets.EXPO_APPLE_PASSWORD}} fetch-binary: name: Fetch binary - runs-on: macos-latest + runs-on: ubuntu-latest needs: build-app steps: - uses: actions/checkout@v2