-
Notifications
You must be signed in to change notification settings - Fork 10
52 lines (44 loc) · 1.43 KB
/
main.yml
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
name: "pre-release"
on:
push:
branches:
- "master"
- "standalone"
workflow_dispatch:
jobs:
pre-release:
name: "Release"
runs-on: ubuntu-latest
steps:
- name: "Checkout Master Branch"
uses: actions/checkout@v3
with:
ref: 'master'
- name: "Extract Master Version Code"
run: |
VERSION_CODE=$(grep 'version=' module.prop | cut -d'=' -f2)
echo "MASTER_VERSION_CODE=$VERSION_CODE" >> $GITHUB_ENV
- name: "Build Master"
run: |
sh ./build.sh github
mv *.zip "eMagisk-full-${{ env.MASTER_VERSION_CODE }}.zip"
- name: "Checkout Standalone Branch"
uses: actions/checkout@v3
with:
ref: 'standalone'
- name: "Extract Standalone Version Code"
run: |
VERSION_CODE=$(grep 'version=' module.prop | cut -d'=' -f2)
echo "STANDALONE_VERSION_CODE=$VERSION_CODE" >> $GITHUB_ENV
- name: "Build Standalone"
run: |
sh ./build.sh github
mv *.zip "eMagisk-noatlas-${{ env.STANDALONE_VERSION_CODE }}.zip"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Latest Release v${{ env.MASTER_VERSION_CODE }} & v${{ env.STANDALONE_VERSION_CODE }}"
files: |
*.zip