Build iOS project #30
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: Build iOS project | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
required: true | |
description: "Version name" | |
jobs: | |
build: | |
name: Build project | |
runs-on: macos-14 | |
steps: | |
- name: "Check out code" | |
uses: actions/checkout@v3 | |
- name: "Setup dependencies: Node" | |
uses: actions/setup-node@v4 | |
- name: "Install dependencies" | |
uses: Macro-Deck-App/Actions/setup-ionic@main | |
- name: "Build Ionic app" | |
run: ionic build -c production | |
- name: "Sync iOS project" | |
run: cap sync ios | |
- name: "Install SSH key" | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.FASTLANE_CERTIFICATES_KEY }} | |
- name: "Cache bundles" | |
uses: actions/cache@v3 | |
with: | |
key: "ios-bundle-${{ hashFiles('ios/Gemfile') }}" | |
path: ios/App/vendor/bundle | |
- name: "Build project" | |
env: | |
BUILD_NUMBER: ${{github.run_number}} | |
VERSION_NUMBER: ${{ inputs.version }} | |
KEY_ID: ${{secrets.APPSTORE_KEY_ID}} | |
ISSUER_ID: ${{secrets.APPSTORE_KEY_ISSUER_ID}} | |
KEY_CONTENT: ${{secrets.APPSTORE_KEY_CONTENT}} | |
MATCH_PASSWORD: ${{secrets.MATCH_PASSWORD}} | |
run: | | |
cd ios/App | |
which bundle || gem install bundler | |
bundle config path vendor/bundle | |
bundle install | |
bundle exec fastlane build | |
- name: "Upload" | |
env: | |
KEY_ID: ${{secrets.APPSTORE_KEY_ID}} | |
ISSUER_ID: ${{secrets.APPSTORE_KEY_ISSUER_ID}} | |
KEY_CONTENT: ${{secrets.APPSTORE_KEY_CONTENT}} | |
CHANGELOG: ${{ github.event.head_commit.message }} | |
run: | | |
cd ios/App | |
bundle exec fastlane release |