-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39d0a63
commit 3143167
Showing
1 changed file
with
17 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,15 +15,27 @@ jobs: | |
with: | ||
token: ${{ secrets.PAT_TOKEN }} # Use PAT_TOKEN for checkout | ||
|
||
- name: Determine Latest Version | ||
id: get-latest-version | ||
run: | | ||
if [ "${{ github.event_name }}" = "release" ]; then | ||
# Use the release tag if triggered by a release | ||
latest_version="${{ github.event.release.tag_name }}" | ||
else | ||
# For manual dispatch, fetch the latest release tag using GitHub API | ||
latest_version=$(curl -s -H "Authorization: Bearer ${{ secrets.PAT_TOKEN }}" \ | ||
https://api.github.com/repos/WH1T3-E4GL3/gixposed/releases/latest | jq -r .tag_name) | ||
fi | ||
echo "Latest version: $latest_version" | ||
echo "latest_version=$latest_version" >> $GITHUB_ENV | ||
- name: Update README.md with latest version | ||
id: update-readme | ||
run: | | ||
# If triggered by a release, use the release tag; otherwise, default to 'v1.0.0' for testing | ||
latest_version="${{ github.event.release.tag_name || 'v1.0.0' }}" | ||
deb_file="gixposed_${latest_version#v}.deb" | ||
deb_file="gixposed_${{ env.latest_version#v }}.deb" | ||
# Update README.md with the latest version and download link | ||
sed -i "s|wget https://github.com/WH1T3-E4GL3/gixposed/releases/download/.*|wget https://github.com/WH1T3-E4GL3/gixposed/releases/download/${latest_version}/${deb_file}|" README.md | ||
sed -i "s|wget https://github.com/WH1T3-E4GL3/gixposed/releases/download/.*|wget https://github.com/WH1T3-E4GL3/gixposed/releases/download/${{ env.latest_version }}/${deb_file}|" README.md | ||
sed -i "s|sudo dpkg -i .*|sudo dpkg -i ${deb_file}|" README.md | ||
- name: Commit changes | ||
|
@@ -33,5 +45,5 @@ jobs: | |
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
git add README.md | ||
git commit -m "Update README.md for release ${{ github.event.release.tag_name || 'manual update' }}" | ||
git commit -m "Update README.md for release ${{ env.latest_version }}" | ||
git push -u origin main # Ensure it pushes to the main branch |