mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
- CI: serialization bug fix - reverted concurrency lock to workflow level instead of job level which was causing issues due to incorrect cache at expected jobs - CI: Boot simulator in async instead of doing in a blocking step - CI: integrate publishing release notes - CI: moved posting to beta-build-num repo into build-job instead of deploy coz we want to roll the beta-build-num for each success of build-job even if the workflow failed.
29 lines
861 B
YAML
29 lines
861 B
YAML
name: Alpha SideStore build
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop-alpha
|
|
|
|
# cancel duplicate run if from same branch
|
|
concurrency:
|
|
group: ${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
Reuseable-build:
|
|
# uses: ./.github/workflows/reuseable-workflows/reusable-build-workflow.yml
|
|
uses: ./.github/workflows/reusable-build-workflow.yml
|
|
with:
|
|
# bundle_id: "com.SideStore.SideStore.Alpha"
|
|
bundle_id: "com.SideStore.SideStore"
|
|
# bundle_id_suffix: ".Alpha"
|
|
is_beta: true
|
|
publish: ${{ vars.PUBLISH_ALPHA_UPDATES == 'true' }}
|
|
is_shared_build_num: false
|
|
release_tag: "alpha"
|
|
release_name: "Alpha"
|
|
upstream_tag: "nightly"
|
|
upstream_name: "Nightly"
|
|
secrets:
|
|
CROSS_REPO_PUSH_KEY: ${{ secrets.CROSS_REPO_PUSH_KEY }}
|
|
BUILD_LOG_ZIP_PASSWORD: ${{ secrets.BUILD_LOG_ZIP_PASSWORD }} |