forked from Rosemoe/sora-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (73 loc) · 2.78 KB
/
Copy pathandroid.yml
File metadata and controls
77 lines (73 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Build and Release
on:
push:
branches:
- main
- "feature/*"
tags:
- "v*.*.*"
pull_request:
branches:
- main
- "feature/*"
jobs:
apk:
name: Generate APK
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Branch name
run: echo running on branch ${GITHUB_REF##*/}
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: "17"
- name: Set execution flag for gradlew
run: chmod +x gradlew
- name: Build APK
run: bash ./gradlew assembleRelease --stacktrace
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: apk
path: app/build/outputs/apk/release/app-release.apk
release:
name: Release APK
needs: apk
runs-on: ubuntu-latest
steps:
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v5.1
- name: Print branch
run: |
echo "Running on default: ${{ steps.branch-name.outputs.current_branch }}"
- name: Download APK from build
uses: actions/download-artifact@v4
with:
name: apk
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
with:
tag_name: ${{ startsWith(github.ref, 'refs/tags/') && github.ref_name || format('v{0}.{1}', github.run_number, github.run_attempt) }}
name: ${{ github.event.repository.name }} ${{ steps.branch-name.outputs.current_branch }} v${{ github.run_number }}.${{ github.run_attempt }}
draft: false
prerelease: false
generate_release_notes: true
- name: Upload Release APK
id: upload_release_asset
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./app-release.apk
asset_name: ${{ github.event.repository.name }}-${{ steps.branch-name.outputs.current_branch }}-v${{ github.run_number }}.${{ github.run_attempt }}.apk
asset_content_type: application/vnd.android.package-archive
- name: Bark
run: curl "http://push.bark.xiaobingkj.com/4uMKBqxAmmRCPFUkyJLgnB/Android%E7%89%88Giteer%E5%8F%91%E5%B8%83%E6%96%B0%E7%89%88%E4%BA%86%EF%BC%81/app-release.apk?group=GiteerAndroid&url=https://github.com/xiaobingtech/sora-editor/releases/download/${{ startsWith(github.ref, 'refs/tags/') && github.ref_name || format('v{0}.{1}', github.run_number, github.run_attempt) }}/${{ github.event.repository.name }}-${{ steps.branch-name.outputs.current_branch }}-v${{ github.run_number }}.${{ github.run_attempt }}.apk"