.github/workflows/schedule.yml #521
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SnapEnhanceModGen Schedule | |
on: | |
schedule: | |
- cron: '45 11,23 * * *' | |
push: | |
paths: | |
- 'push-here.md' | |
- '**/core.apk' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Set JAVA_HOME | |
run: echo "JAVA_HOME=$(echo ${{ steps.setup-java.outputs.java-home }})" >> $GITHUB_ENV | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- 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@v4 | |
with: | |
name: snap-402-lspatched.apk | |
path: ./snap-402-lspatched.apk | |
overwrite: true | |
- 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@v2 | |
with: | |
files: snap-402-lspatched.apk | |
tag_name: ${{ env.RELEASE_VERSION }}-Stable # Append "-Stable" to the tag name |