forked from XCSoar/XCSoar
-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (30 loc) · 889 Bytes
/
release.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
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
release:
name: "Create Release"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: True
- name: parse changelog
run: |
TAG=$(echo ${{ github.ref }} | cut -f3 -d '/')
echo 'CHANGELOGENTRY<<EOF' >> $GITHUB_ENV
./tools/changelog.sh $TAG >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
id: changelogentry
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ github.ref }}
release_name: Version ${{ github.ref }}
body: ${{ env.CHANGELOGENTRY }}