mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-02-28 21:38:20 +03:00
Merge branch 'master' into dev
This commit is contained in:
commit
95d7db8e7c
2 changed files with 8 additions and 2 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -6,6 +6,7 @@ on:
|
|||
branches:
|
||||
- dev
|
||||
- master
|
||||
- extended
|
||||
paths-ignore:
|
||||
- 'README.md'
|
||||
- 'doc/**'
|
||||
|
@ -49,6 +50,11 @@ jobs:
|
|||
- name: Build debug APK and run jvm tests
|
||||
run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint
|
||||
|
||||
- name: Generate checksum
|
||||
run: |
|
||||
sha256sum app/build/outputs/apk/debug/*.apk > app/build/outputs/apk/debug/checksums.txt
|
||||
echo "::notice::$(cat app/build/outputs/apk/debug/checksums.txt)"
|
||||
|
||||
- name: Upload APK
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
|
|
|
@ -47,8 +47,8 @@ graph TD
|
|||
D --> | Test & Mini Changes | E[master]
|
||||
D --> X[A-feature]
|
||||
D --> Y[B-feature]
|
||||
X --> F[extended]
|
||||
Y --> F
|
||||
X --> | REVIEW | F[extended]
|
||||
Y --> | REVIEW | F
|
||||
|
||||
F --> | Pre-Release | G(v0.xx.x-extended)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue