-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (45 loc) · 2.03 KB
/
update-readme.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
name: Update README with Release Version
on:
release:
types: [published]
workflow_dispatch: # Adds manual trigger
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
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"
# Strip the 'v' if it exists
deb_file_version="${latest_version#v}"
echo "latest_version=$latest_version" >> $GITHUB_ENV
echo "deb_file_version=$deb_file_version" >> $GITHUB_ENV
- name: Update README.md with latest version
id: update-readme
run: |
deb_file="gixposed_${deb_file_version}.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/${{ env.latest_version }}/${deb_file}|" README.md
sed -i "s|sudo dpkg -i .*|sudo dpkg -i ${deb_file}|" README.md
- name: Commit changes
env:
TOKEN: ${{ secrets.PAT_TOKEN }}
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git add README.md
git commit -m "Update README.md for release ${{ env.latest_version }}"
git push -u origin main # Ensure it pushes to the main branch