mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-14 12:08:40 +00:00
Merge pull request #534 from jLynx/changelog
Added changelog to release notes v2
This commit is contained in:
commit
b4e5fb7483
28
.github/workflows/changelog.py
vendored
Normal file
28
.github/workflows/changelog.py
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
import os
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
|
||||||
|
raw_git = os.popen('git log next --since="24 hours" --pretty=format:"- %h - {USERNAME}*+%al-%an*: %s"').read()
|
||||||
|
|
||||||
|
|
||||||
|
def compute_username(line):
|
||||||
|
stripped = re.search(r'(?<=\*)(.*?)(?=\*)', line).group(0)
|
||||||
|
|
||||||
|
pattern = re.compile("[$@+&?].*[$@+&?]")
|
||||||
|
if pattern.match(stripped):
|
||||||
|
stripped = re.sub("[$@+&?].*[$@+&?]", "", stripped)
|
||||||
|
stripped = re.match(r'.+?(?=-)', stripped).group(0)
|
||||||
|
else:
|
||||||
|
stripped = re.sub(r'^.*?-', "", stripped)
|
||||||
|
return "@" + stripped
|
||||||
|
|
||||||
|
|
||||||
|
def compile_line(line):
|
||||||
|
username = compute_username(line)
|
||||||
|
line = re.sub(r'[*].*[*]', "", line)
|
||||||
|
line = line.replace("{USERNAME}", username)
|
||||||
|
return line
|
||||||
|
|
||||||
|
|
||||||
|
for row in raw_git.splitlines():
|
||||||
|
print(compile_line(row))
|
18
.github/workflows/create_nightly_release.yml
vendored
18
.github/workflows/create_nightly_release.yml
vendored
@ -35,6 +35,7 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@master
|
||||||
with:
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
ref: next
|
ref: next
|
||||||
submodules: true
|
submodules: true
|
||||||
- name: Git Sumbodule Update
|
- name: Git Sumbodule Update
|
||||||
@ -52,6 +53,14 @@ jobs:
|
|||||||
- name: Create SD Card ZIP
|
- name: Create SD Card ZIP
|
||||||
run: |
|
run: |
|
||||||
zip -r sdcard.zip sdcard
|
zip -r sdcard.zip sdcard
|
||||||
|
- name: Create changelog
|
||||||
|
run: |
|
||||||
|
CHANGELOG=$(python3 .github/workflows/changelog.py)
|
||||||
|
CHANGELOG="${CHANGELOG//'%'/'%25'}"
|
||||||
|
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
|
||||||
|
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
|
||||||
|
echo "::set-output name=content::$CHANGELOG"
|
||||||
|
id: changelog
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: actions/create-release@v1
|
uses: actions/create-release@v1
|
||||||
@ -59,12 +68,13 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
tag_name: nightly-tag-${{ steps.date.outputs.date }}
|
tag_name: nightly-tag-${{ steps.date.outputs.date }}
|
||||||
release_name: Nightly-release - ${{ steps.date.outputs.date }}
|
release_name: Nightly Release - ${{ steps.date.outputs.date }}
|
||||||
body: |
|
body: |
|
||||||
**Nightly release - ${{ steps.date.outputs.date }}**
|
**Nightly release - ${{ steps.date.outputs.date }}**
|
||||||
This build is the latest and greatest, although may not be the most stable as this is a nightly release.
|
This build is the latest and greatest, although may not be the most stable as this is a nightly release.
|
||||||
Version: ${{ steps.version_date.outputs.date }}
|
## Release notes
|
||||||
You can find the changes in this commit ${{ github.sha }}
|
### Revision (${{ steps.version_date.outputs.date }}):
|
||||||
|
${{ steps.changelog.outputs.content }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: true
|
prerelease: true
|
||||||
- name: Upload Firmware Asset
|
- name: Upload Firmware Asset
|
||||||
@ -85,5 +95,5 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
asset_path: ./sdcard.zip
|
asset_path: ./sdcard.zip
|
||||||
asset_name: mayhem_nightly_${{ steps.date.outputs.date }}_COPY_TO_SDCARD.zip
|
asset_name: mayhem_nightly_${{ steps.version_date.outputs.date }}_COPY_TO_SDCARD.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
Loading…
Reference in New Issue
Block a user