publish Blokada 6 for iOS: 23.3.1 #17
Workflow file for this run
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: Blokada 6 for iOS (Publish) | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- ios.v6.** | |
jobs: | |
build: | |
runs-on: macos-latest | |
defaults: | |
run: | |
working-directory: ./six-ios | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up ruby env | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7.2 | |
bundler-cache: true | |
- name: Install bundler | |
run: gem install bundler:1.17.2 | |
- name: Install fastlane | |
run: bundler install | |
- name: Get Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Build common lib | |
run: | | |
git config --global url."https://${{ secrets.GIT_TOKEN }}@github.com/".insteadOf "[email protected]:" | |
make sixcommon | |
- name: Import Code-Signing Certificates | |
uses: Apple-Actions/import-codesign-certs@v1 | |
with: | |
p12-file-base64: ${{ secrets.IOS_DIST_SIGNING_KEY }} | |
p12-password: ${{ secrets.IOS_DIST_SIGNING_KEY_PASSWORD }} | |
keychain-password: signingtmp | |
- name: Build & upload iOS binary | |
run: bundle exec fastlane build_upload_testflight | |
env: | |
ASC_KEY_ID: ${{ secrets.ASC_KEY_ID }} | |
ASC_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }} | |
ASC_KEY: ${{ secrets.ASC_PRIVATE_KEY }} | |
KEYCHAIN_PATH: ~/Library/Keychains/signing_temp.keychain-db | |
- name: Upload app-store ipa and dsyms to artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: app-store ipa & dsyms | |
path: | | |
${{ github.workspace }}/example-iOS.ipa | |
${{ github.workspace }}/*.app.dSYM.zip |