mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
Update createchangelog.yml
This commit is contained in:
parent
b2cd7d7897
commit
425ec42cb5
31
.github/workflows/createchangelog.yml
vendored
31
.github/workflows/createchangelog.yml
vendored
@ -12,23 +12,22 @@ jobs:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Get all releases and update update.mb file
|
||||
- name: Get latest release and update update.mb file
|
||||
run: |
|
||||
# Fetch all releases using GitHub CLI
|
||||
gh release list --limit 1000 > releases.txt
|
||||
# Fetch the latest release using GitHub CLI
|
||||
latest_release=$(gh release view --json tagName,name,body --jq '{tag: .tagName, name: .name, body: .body}')
|
||||
|
||||
# Extract numeric versions and create update.mb content
|
||||
echo "" > docs/update.mb
|
||||
while read -r line; do
|
||||
tag=$(echo "$line" | awk '{print $1}')
|
||||
name=$(echo "$line" | awk -F'\t' '{print $2}')
|
||||
version_numeric=$(echo "$tag" | grep -o -E '[0-9.]+')
|
||||
body=$(gh release view "$tag" --json body --jq .body)
|
||||
echo "## $version_numeric" >> docs/update.mb
|
||||
echo "Release name: $name" >> docs/update.mb
|
||||
echo "Release body: $body" >> docs/update.mb
|
||||
echo "" >> docs/update.mb
|
||||
done < releases.txt
|
||||
# Extract details
|
||||
tag=$(echo "$latest_release" | jq -r '.tag')
|
||||
name=$(echo "$latest_release" | jq -r '.name')
|
||||
body=$(echo "$latest_release" | jq -r '.body')
|
||||
version_numeric=$(echo "$tag" | grep -o -E '[0-9.]+')
|
||||
|
||||
# Append to update.mb
|
||||
echo "## $version_numeric" >> docs/update.mb
|
||||
echo "Release name: $name" >> docs/update.mb
|
||||
echo "Release body: $body" >> docs/update.mb
|
||||
echo "" >> docs/update.mb
|
||||
|
||||
- name: Commit and Push Changes
|
||||
env:
|
||||
@ -37,5 +36,5 @@ jobs:
|
||||
git config --global user.name 'github-actions[bot]'
|
||||
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||
git add docs/update.mb
|
||||
git commit -m "Update update.mb with all releases"
|
||||
git commit -m "Update update.mb with latest release"
|
||||
git push
|
||||
|
Loading…
Reference in New Issue
Block a user