Skip to content

App Store Release

App Store Release #30

Workflow file for this run

name: App Store Release
on:
workflow_dispatch:
permissions:
contents: read
jobs:
release:
name: Build & Upload to App Store
runs-on: macos-26
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '26.2'
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Build and upload to App Store
timeout-minutes: 30
run: bundle exec fastlane release
env:
ASC_KEY_ID: ${{ secrets.ASC_KEY_ID }}
ASC_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }}
ASC_KEY_CONTENT: ${{ secrets.ASC_KEY_CONTENT }}
MATCH_GIT_URL: ${{ secrets.MATCH_GIT_URL }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
- name: Upload IPA artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: RemoteShutter.ipa
path: |
**/*.ipa
**/*.dSYM
retention-days: 30