mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-01 05:48:22 +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:
|
branches:
|
||||||
- dev
|
- dev
|
||||||
- master
|
- master
|
||||||
|
- extended
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'README.md'
|
- 'README.md'
|
||||||
- 'doc/**'
|
- 'doc/**'
|
||||||
|
@ -49,6 +50,11 @@ jobs:
|
||||||
- name: Build debug APK and run jvm tests
|
- name: Build debug APK and run jvm tests
|
||||||
run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint
|
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
|
- name: Upload APK
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -47,8 +47,8 @@ graph TD
|
||||||
D --> | Test & Mini Changes | E[master]
|
D --> | Test & Mini Changes | E[master]
|
||||||
D --> X[A-feature]
|
D --> X[A-feature]
|
||||||
D --> Y[B-feature]
|
D --> Y[B-feature]
|
||||||
X --> F[extended]
|
X --> | REVIEW | F[extended]
|
||||||
Y --> F
|
Y --> | REVIEW | F
|
||||||
|
|
||||||
F --> | Pre-Release | G(v0.xx.x-extended)
|
F --> | Pre-Release | G(v0.xx.x-extended)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue