mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 12:34:12 +00:00
Refactor GitHub Actions workflows (#1023)
* Unify release workflows and add chart/mobile wrappers * Update chart CI to kube 1.25 * Fetch tagged commit before pushing release branch * Old `azure/setup-helm` * Base chart dispatch version on existing chart tags * `grep` failure with `pipefail` bypasses the user-friendly error message * `gh-pages` push lacks retry logic * Auto-incremented chart tag collision * `grep -Ev` pipeline will crash * Missed one
This commit is contained in:
28
.github/workflows/mobile-ci.yml
vendored
Normal file
28
.github/workflows/mobile-ci.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: Mobile CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- 'mobile/**'
|
||||
- 'public/android-chrome-*.png'
|
||||
- 'public/apple-touch-icon.png'
|
||||
- '.github/workflows/flutter-build.yml'
|
||||
- '.github/workflows/mobile-ci.yml'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'mobile/**'
|
||||
- 'public/android-chrome-*.png'
|
||||
- 'public/apple-touch-icon.png'
|
||||
- '.github/workflows/flutter-build.yml'
|
||||
- '.github/workflows/mobile-ci.yml'
|
||||
|
||||
concurrency:
|
||||
group: mobile-ci-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
uses: ./.github/workflows/flutter-build.yml
|
||||
secrets: inherit
|
||||
Reference in New Issue
Block a user