-
Notifications
You must be signed in to change notification settings - Fork 13
80 lines (66 loc) · 2.32 KB
/
makeBetaRelease.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
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
78
79
80
name: Make Canary Release
on:
push:
branches:
- 'beta'
paths:
- '.github/edit2MakeNewBeta'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Source Code Download
run: git clone --branch beta --single-branch --recurse-submodules https://github.com/DHD2280/Oxygen-Customizer.git .
- name: JDK 17 Setup
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Shell Scripts Permissions
run: chmod +x .github/*.sh
- name: Changelog Generation
run: .github/extractChanges.sh
- name: Version Bump
run: .github/bumpVersion.sh ${{ github.run_id }}
- name: Gradlew Permissions
run: chmod +x gradlew
- name: Signature files preparation
run: |
if [ ! -z "${{ secrets.KEYSTORE }}" ]; then
echo storePassword='${{ secrets.KEYSTORE_PASSWORD }}' >> keystore.properties
echo keyAlias='${{ secrets.KEY_ALIAS }}' >> keystore.properties
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> keystore.properties
echo storeFile='${{ github.workspace }}/key.jks' >> keystore.properties
echo ${{ secrets.KEYSTORE }} | base64 --decode > ${{ github.workspace }}/key.jks
fi
- name: Gradle Build
run: ./gradlew assembleRelease
- name: Upload Xposed Artifact to Actions
uses: actions/[email protected]
with:
name: OxygenCustomizer.apk
path: output
- name: Oxygen Customizer Binary Release
uses: ncipollo/[email protected]
with:
tag: 'beta_builds'
name: 'Latest Beta'
omitBodyDuringUpdate: true
prerelease: true
allowUpdates: true
replacesArtifacts: true
draft: false
artifacts: 'output/*.*'
- name: Version Bump Commit
uses: github-actions-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'beta'
commit-message: 'Version update: Release'
force-add: 'true'
files: app/build.gradle latestVersion.json BetaChangelog.md latestBeta.json
name: GitHub
email: [email protected]