Files
App/.github/workflows/build-android.yml
Violet Caulfield 1848c56245 just curious
2025-02-09 18:28:58 -06:00

29 lines
1009 B
YAML

name: build-android
on:
pull_request:
jobs:
build-android:
runs-on: macos-latest
steps:
- name: 🛒 Checkout
uses: actions/checkout@v4
- name: 🖥 Setup Node 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: 💬 Echo package.json version to Github ENV
run: echo VERSION_NUMBER=$(node -p -e "require('./package.json').version") >> $GITHUB_ENV
- name: 🟢 Run npm run init
run: npm run init
- name: 🚀 Run fastlane build
run: npm run fastlane:android:build
# env:
# # FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }}
# APPSTORE_CONNECT_API_KEY_JSON: ${{ secrets.APPSTORE_CONNECT_API_KEY_JSON }}
# FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{ secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD }}
# MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
# MATCH_REPO_PAT: "anultravioletaurora:${{ secrets.SIGNING_REPO_PAT }}"