Skip to content

Commit

Permalink
fix: re-fix workflows not running
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanConn committed Jul 14, 2023
1 parent 601f82f commit f0a2420
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/cli-wallet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: cli-wallet-android

on:
push:
branches: [ feat/E2E-maestro ]
# pull_request:
# branches: [ main ]

jobs:
maestro-cloud:
runs-on: ubuntu-latest
defaults:
run:
working-directory: wallets/rn_cli_wallet
outputs:
app: app/build/outputs/apk/debug
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: gradle
- run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}" >> .env
- run: npm install -g yarn
- run: yarn
- run: yarn android:build
- uses: mobile-dev-inc/action-maestro-cloud@v1
with:
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
app-file: wallets/rn_cli_wallet/android/app/build/outputs/apk/release/app-release.apk
31 changes: 31 additions & 0 deletions .github/workflows/v2explorer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: v2explorer-android

on:
push:
branches: [ feat/E2E-maestro ]
# pull_request:
# branches: [ main ]

jobs:
maestro-cloud:
runs-on: ubuntu-latest
defaults:
run:
working-directory: dapps/v2Explorer
outputs:
app: app/build/outputs/apk/debug
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: gradle
- run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}" >> .env
- run: npm install -g yarn
- run: yarn
- run: yarn android:build
- uses: mobile-dev-inc/action-maestro-cloud@v1
with:
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
app-file: dapps/v2Explorer/android/app/build/outputs/apk/release/app-release.apk

0 comments on commit f0a2420

Please sign in to comment.