lets see if android can build

This commit is contained in:
Violet Caulfield
2025-02-06 07:37:59 -06:00
parent 6b567bf645
commit 085e5fc6e9
4 changed files with 35 additions and 3 deletions
+31
View File
@@ -0,0 +1,31 @@
name: build-android
on:
push:
branches-ignore:
- "main"
jobs:
build-ios:
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 }}"
+1 -1
View File
@@ -46,7 +46,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "ios/Jellify.ipa"
name: "Jellify - ${{ env.VERSION_NUMBER }}"
name: ${{ env.VERSION_NUMBER }}
prerelease: true
tag: ${{ env.VERSION_NUMBER }}
token: ${{ secrets.SIGNING_REPO_PAT }}