Merge branch '9-implement-playlist-crud' of github.com:anultravioletaurora/Jellify into 9-implement-playlist-crud

This commit is contained in:
Violet Caulfield
2025-02-03 09:51:58 -06:00
2 changed files with 11 additions and 2 deletions
+8 -1
View File
@@ -1,5 +1,6 @@
name: build-ios-app
on:
pull_request:
push:
branches:
- 'main'
@@ -12,7 +13,13 @@ jobs:
with:
node-version: 20
- run: npm run init
- run: fastlane match import
- run: fastlane match development --readonly
working-directory: ./ios
env:
FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_REPO_PAT: "anultravioletaurora:${{ secrets.SIGNING_REPO_PAT }}"
- run: fastlane beta
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
+3 -1
View File
@@ -1,4 +1,4 @@
git_url("git@github.com:anultravioletaurora/jellify-signing.git")
git_url("https://github.com/anultravioletaurora/jellify-signing.git")
storage_mode("git")
@@ -11,3 +11,5 @@ username("violet@cosmonautical.cloud") # Your Apple Developer Portal username
# Remove the # in the beginning of the line to enable the other options
# The docs are available on https://docs.fastlane.tools/actions/match
git_basic_authorization(Base64.strict_encode64(ENV["MATCH_REPO_PAT"]))