Remove mutiny plus references #364
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Android Staging | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build APK | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Cache gradle | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install app dependencies | |
run: pnpm install | |
- name: Build SolidJS app | |
env: | |
VITE_NETWORK: signet | |
VITE_PROXY: wss://p.mutinywallet.com | |
VITE_ESPLORA: https://mutinynet.com/api | |
VITE_LSP: https://mutinynet-flow.lnolymp.us | |
VITE_RGS: https://rgs.mutinynet.com/snapshot/ | |
VITE_AUTH: https://auth-staging.mutinywallet.com | |
VITE_SUBSCRIPTIONS: https://subscriptions-staging.mutinywallet.com | |
VITE_STORAGE: https://storage-staging.mutinywallet.com/v2 | |
VITE_FEEDBACK: https://feedback-staging.mutinywallet.com | |
VITE_SCORER: https://scorer-staging.mutinywallet.com | |
VITE_PRIMAL: https://primal-cache.mutinywallet.com/api | |
VITE_BLIND_AUTH: https://blind-auth-staging.mutinywallet.com | |
VITE_HERMES: https://signet.mutiny.plus | |
run: pnpm build | |
- name: Capacitor sync | |
run: npx cap sync | |
- name: Build AAB | |
working-directory: android | |
run: ./gradlew clean bundleRelease --stacktrace | |
- name: Sign AAB (F-Droid) | |
uses: r0adkll/sign-android-release@v1 | |
with: | |
releaseDirectory: android/app/build/outputs/bundle/fdroidRelease | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.KEY_ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
keyPassword: ${{ secrets.KEY_PASSWORD }} | |
env: | |
BUILD_TOOLS_VERSION: "33.0.0" | |
- name: Build APK | |
working-directory: android | |
run: ./gradlew assembleRelease --stacktrace | |
- name: Sign APK (F-Droid) | |
uses: r0adkll/sign-android-release@v1 | |
with: | |
releaseDirectory: android/app/build/outputs/apk/fdroid/release | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.KEY_ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
keyPassword: ${{ secrets.KEY_PASSWORD }} | |
env: | |
BUILD_TOOLS_VERSION: "33.0.0" | |
# F-Droid APK | |
- name: Upload F-Droid APK Universal Asset | |
id: upload-release-asset-fdroid-universal-apk | |
uses: actions/upload-artifact@v3 | |
with: | |
path: android/app/build/outputs/apk/fdroid/release/app-fdroid-universal-release-unsigned-signed.apk | |
name: mutiny-wallet-fdroid-universal-master.apk | |
- name: Upload F-Droid APK x86 Asset | |
id: upload-release-asset-fdroid-x86-apk | |
uses: actions/upload-artifact@v3 | |
with: | |
path: android/app/build/outputs/apk/fdroid/release/app-fdroid-x86-release-unsigned-signed.apk | |
name: mutiny-wallet-fdroid-x86-master.apk | |
- name: Upload F-Droid APK x86_64 Asset | |
id: upload-release-asset-fdroid-x86-64-apk | |
uses: actions/upload-artifact@v3 | |
with: | |
path: android/app/build/outputs/apk/fdroid/release/app-fdroid-x86_64-release-unsigned-signed.apk | |
name: mutiny-wallet-fdroid-x86_64-master.apk | |
# FDroid AAB | |
- name: Upload F-Droid AAB Asset | |
uses: actions/upload-artifact@v3 | |
with: | |
path: android/app/build/outputs/bundle/fdroidRelease/app-fdroid-release.aab | |
name: mutiny-wallet-fdroid-master.aab |