forked from AdrianTM/mx-repo-manager
-
Notifications
You must be signed in to change notification settings - Fork 5
58 lines (51 loc) · 1.99 KB
/
release.yaml
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
53
54
55
56
57
58
name: Create Release
on:
push:
tags:
- '*'
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get Latest Changelog Entry
id: get-changelog
run: |
changelog=$(awk '
BEGIN { changes = ""; release_found = 0; in_changes = 0 }
/^'${{ github.event.repository.name }}'/ {
if (release_found == 1) exit
release_found = 1
next
}
release_found == 1 && /^\s*\*/ {
in_changes = 1
}
release_found == 1 && in_changes == 1 {
if ($0 ~ /^\s*\*/) {
changes = changes $0 "\n"
} else if ($0 ~ /^\s+/) {
changes = changes $0 "\n"
} else {
exit
}
}
END { print changes }
' debian/changelog)
echo "changelog<<EOF" >> $GITHUB_ENV
echo "$changelog" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
name: Release ${{ github.ref_name }}
body: |
### Automated release created for tag *${{ github.ref_name }}*
- Direct download link: [![build service](https://build.opensuse.org/projects/home:mx-packaging/packages/${{ github.event.repository.name }}/badge.svg?type=default)](https://software.opensuse.org//download.html?project=home%3Amx-packaging&package=${{ github.event.repository.name }})
- In repos: [![latest packaged version](https://repology.org/badge/latest-versions/${{ github.event.repository.name }}.svg)](https://repology.org/project/${{ github.event.repository.name }}/versions)
### Changelog
${{ env.changelog }}
draft: false
prerelease: false