.github/workflows/schedule.yml #540
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 * * *' | |
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 scriptv.sh | |
working-directory: . | |
- name: Specific Version APK Download | |
run: | | |
./scriptv.sh | |
java -jar lspatch.jar -m core.apk -f -l 2 -v snapv.apk | |
mv snapv-360-lspatched.apk snapFirst.apk | |
- name: Grant execute permissions to script | |
run: chmod +x script.sh | |
working-directory: . | |
- name: Latest APK Download | |
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 SnapEnhanced | |
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: Rename Specific Version of Snapchat File | |
run: mv snap-360-lspatched.apk snapLatest.apk | |
- name: Check if the release already exists | |
id: check_release | |
run: | | |
RELEASE_VERSION=v0.1 # 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: | | |
snapFirst.apk | |
snapLatest.apk | |
tag_name: ${{ env.RELEASE_VERSION }} |