forked from imgproxy/imgproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 1.04 KB
/
release.yml
File metadata and controls
31 lines (28 loc) · 1.04 KB
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
name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare notes
run: |
# Extract changelog entries between this and previous version headers
escaped_version=$(echo ${GITHUB_REF_NAME#v} | sed -e 's/[]\/$*.^[]/\\&/g')
awk "BEGIN{inrelease=0} /## \[${escaped_version}\]/{inrelease=1;next} /## \[[0-9]+\.[0-9]+\.[0-9]+.*\]/{inrelease=0;exit} {if (inrelease) print}" CHANGELOG.md \
> RELEASE_NOTES.txt
# Write PRERELEASE="true" env if tag name has any suffix after vMAJOR.MINOR.PATCH
if [[ ${GITHUB_REF_NAME} =~ ^v[0-9]+\.[0-9]+\.[0-9]+.+ ]]; then
echo 'PRERELEASE="true"' >> $GITHUB_ENV
else
echo 'PRERELEASE="false"' >> $GITHUB_ENV
fi
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: RELEASE_NOTES.txt
prerelease: ${{ fromJSON(env.PRERELEASE) }}