-
Notifications
You must be signed in to change notification settings - Fork 15
102 lines (87 loc) · 3.35 KB
/
schedule.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: SnapEnhanceModGen Schedule
on:
schedule:
- cron: '45 11,23 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y jq curl
shell: bash
- name: Install unzip
run: sudo apt-get install unzip -y
- name: Install pup
run: |
wget https://github.com/ericchiang/pup/releases/download/v0.4.0/pup_v0.4.0_linux_amd64.zip -O pup.zip
unzip pup.zip
chmod +x pup
sudo mv pup /usr/local/bin/
working-directory: .
- name: Grant execute permissions to script
run: chmod +x script.sh
working-directory: .
- name: Run APK Download Script
run: |
./script.sh
- name: Fetch latest release information
id: fetch-release
run: |
repo_owner="rhunk"
repo_name="SnapEnhance"
api_url="https://api.github.com/repos/${repo_owner}/${repo_name}/releases/latest"
release_info=$(curl -s "$api_url")
release_id=$(echo $release_info | jq -r '.id')
release_tag_name=$(echo $release_info | jq -r '.tag_name')
# Find the asset URL for APK files
asset_url=""
for asset in $(echo $release_info | jq -c '.assets[]'); do
asset_name=$(echo $asset | jq -r '.name')
if [[ $asset_name == *"armv8"* && $asset_name == *".apk" ]]; then
asset_url=$(echo $asset | jq -r '.browser_download_url')
break
fi
done
echo "release_id=$release_id" >> $GITHUB_ENV
echo "release_tag_name=$release_tag_name" >> $GITHUB_ENV
echo "asset_url=$asset_url" >> $GITHUB_ENV
shell: bash
- name: Download the latest APK
run: |
release_id="${{ env.release_id }}"
asset_url="${{ env.asset_url }}"
release_tag_name="${{ env.release_tag_name }}"
wget "$asset_url" -O "$GITHUB_WORKSPACE/latest-snapenhance-${release_tag_name}.apk"
shell: bash
- name: Run the command
run: |
java -jar lspatch.jar -m latest-snapenhance-${release_tag_name}.apk -f -l 2 -v snap.apk
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: snap-360-lspatched.apk
path: ./snap-360-lspatched.apk
- name: Check if the release already exists
id: check_release
run: |
RELEASE_VERSION=v0.0 # Change this to the initial release version
if curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ github.repository }}/releases/tags/$RELEASE_VERSION; then
echo "Release $RELEASE_VERSION already exists."
# Increment the release version
RELEASE_VERSION=$(echo $RELEASE_VERSION | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./')
fi
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV
- name: Create or Update Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: snap-360-lspatched.apk
tag_name: ${{ env.RELEASE_VERSION }}