File tree 2 files changed +29
-0
lines changed
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 6
6
branches :
7
7
- dev
8
8
- master
9
+ - extended
9
10
paths-ignore :
10
11
- ' README.md'
11
12
- ' doc/**'
49
50
- name : Build debug APK and run jvm tests
50
51
run : ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint
51
52
53
+ - name : Generate checksum
54
+ run : |
55
+ sha256sum app/build/outputs/apk/debug/*.apk > app/build/outputs/apk/debug/checksums.txt
56
+ echo "::notice::$(cat app/build/outputs/apk/debug/checksums.txt)"
57
+
52
58
- name : Upload APK
53
59
uses : actions/upload-artifact@v4
54
60
with :
Original file line number Diff line number Diff line change @@ -34,6 +34,29 @@ This is the SHA fingerprint of LastPipeBender's signing key to verify downloaded
34
34
1B:00:8D:64:BB:95:AB:47:74:D6:8B:87:F2:2B:8B:E9:A2:72:F4:92:4D:F5:20:29:D7:E6:18:38:35:D9:18:CC
35
35
```
36
36
37
+ ### Project Management
38
+
39
+ ``` mermaid
40
+ ---
41
+ title: Project Management
42
+ ---
43
+ graph TD
44
+ A[master_newpipe] --> D[dev]
45
+ B[master_tubular] --> D
46
+ C[dev_brave] --> D
47
+ D --> | Test & Mini Changes | E[master]
48
+ D --> X[A-feature]
49
+ D --> Y[B-feature]
50
+ X --> | REVIEW | F[extended]
51
+ Y --> | REVIEW | F
52
+
53
+ F --> | Pre-Release | G(v0.xx.x-extended)
54
+
55
+ F --> | Ensure Long-Term Compatibility | E
56
+ E --> | Stable Release | K(v0.xx.x)
57
+ ```
58
+ -to be updated-
59
+
37
60
## License
38
61
[ ![ GNU GPLv3] ( https://www.gnu.org/graphics/gplv3-127x51.png )] ( https://www.gnu.org/licenses/gpl-3.0.en.html )
39
62
You can’t perform that action at this time.
0 commit comments