mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-27 23:47:39 +01:00
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
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/workflow.py shared
|
|
|
|
- name: Beta bump
|
|
env:
|
|
RELEASE_CHANNEL: alpha
|
|
run: python3 scripts/ci/workflow.py bump-beta
|
|
|
|
- name: Version
|
|
id: version
|
|
run: python3 scripts/ci/workflow.py version
|
|
|
|
- name: Build
|
|
run: python3 scripts/ci/workflow.py build
|
|
|
|
- name: Encrypt logs
|
|
env:
|
|
BUILD_LOG_ZIP_PASSWORD: ${{ secrets.BUILD_LOG_ZIP_PASSWORD }}
|
|
run: python3 scripts/ci/workflow.py encrypt-build
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: SideStore-${{ steps.version.outputs.version }}.ipa
|
|
path: SideStore.ipa |