mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
name: Pull Request SideStore build
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and upload SideStore
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: 'macos-12'
|
|
version: '14.2'
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install dependencies
|
|
run: brew install ldid
|
|
|
|
- name: Add PR suffix to version
|
|
run: sed -e "/MARKETING_VERSION = .*/s/\$/-pr.${{ github.event.pull_request.number }}+$(git rev-parse --short ${COMMIT:-HEAD})/" -i '' Build.xcconfig
|
|
env:
|
|
COMMIT: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Setup Xcode
|
|
uses: maxim-lobanov/setup-xcode@v1.4.1
|
|
with:
|
|
xcode-version: ${{ matrix.version }}
|
|
|
|
- name: Build SideStore
|
|
run: make build | xcpretty && exit ${PIPESTATUS[0]}
|
|
|
|
- name: Fakesign app
|
|
run: make fakesign
|
|
|
|
- name: Convert to IPA
|
|
run: make ipa
|
|
|
|
- name: Upload SideStore.ipa Artifact
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: SideStore.ipa
|
|
path: SideStore.ipa
|
|
|
|
- name: Upload *.dSYM Artifact
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: SideStore-dSYM
|
|
path: ./*.dSYM/
|