mirror of
https://github.com/SideStore/SideStore.git
synced 2026-03-27 12:55:40 +01:00
47 lines
998 B
YAML
47 lines
998 B
YAML
name: Alpha SideStore Build
|
|
|
|
on:
|
|
push:
|
|
branches: [develop-alpha]
|
|
|
|
concurrency:
|
|
group: ${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-15
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
|
|
- run: brew install ldid xcbeautify
|
|
|
|
- name: Shared
|
|
id: shared
|
|
run: python3 scripts/ci.py shared
|
|
|
|
- name: Beta bump
|
|
env:
|
|
RELEASE_CHANNEL: alpha
|
|
run: python3 scripts/ci.py bump-beta
|
|
|
|
- name: Version
|
|
id: version
|
|
run: python3 scripts/ci.py version
|
|
|
|
- name: Build
|
|
run: python3 scripts/ci.py build
|
|
|
|
- name: Encrypt logs
|
|
env:
|
|
BUILD_LOG_ZIP_PASSWORD: ${{ secrets.BUILD_LOG_ZIP_PASSWORD }}
|
|
run: python3 scripts/ci.py encrypt-build
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: SideStore-${{ steps.version.outputs.version }}.ipa
|
|
path: SideStore.ipa |