mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
71 lines
2.0 KiB
YAML
71 lines
2.0 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-14'
|
|
version: '15.4'
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
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: Get version
|
|
id: version
|
|
run: echo "version=$(grep MARKETING_VERSION Build.xcconfig | sed -e "s/MARKETING_VERSION = //g")" >> $GITHUB_OUTPUT
|
|
|
|
- name: Echo version
|
|
run: echo "${{ steps.version.outputs.version }}"
|
|
|
|
- name: Setup Xcode
|
|
uses: maxim-lobanov/setup-xcode@v1.6.0
|
|
with:
|
|
xcode-version: ${{ matrix.version }}
|
|
|
|
- name: Cache Build
|
|
uses: irgaly/xcode-cache@v1
|
|
with:
|
|
key: xcode-cache-deriveddata-${{ github.sha }}
|
|
restore-keys: xcode-cache-deriveddata-
|
|
|
|
- name: Build SideStore
|
|
run: make build | xcpretty && exit ${PIPESTATUS[0]}
|
|
|
|
- name: Fakesign app
|
|
run: make fakesign
|
|
|
|
- name: Convert to IPA
|
|
run: make ipa
|
|
|
|
- name: Add version to IPA file name
|
|
run: mv SideStore.ipa SideStore-${{ steps.version.outputs.version }}.ipa
|
|
|
|
- name: Upload SideStore.ipa Artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: SideStore-${{ steps.version.outputs.version }}.ipa
|
|
path: SideStore-${{ steps.version.outputs.version }}.ipa
|
|
|
|
- name: Upload *.dSYM Artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: SideStore-${{ steps.version.outputs.version }}-dSYM
|
|
path: ./*.dSYM/
|