-
Notifications
You must be signed in to change notification settings - Fork 2.5k
44 lines (39 loc) · 1.08 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Release
on:
push:
branches:
- master
paths:
- './version.json'
workflow_dispatch:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get version from version.json
id: get_info
run: |
echo "version=$(node -p "require('./version.json').version")" >> $GITHUB_ENV
- name: Get changelog
id: get_changelog
run: |
echo "changelog=$(awk -v ver="^## v${{env.version}}$" '/^## v/{if(p && $0 !~ ver) exit; p=1} p' CHANGELOG.md)" >> $GITHUB_ENV
- name: Print Changelog
id: print_changelog
run: |
echo "Changelog: ${{ env.changelog }}"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.version }}
release_name: v${{ env.version }}
body: ${{ env.changelog }}
draft: false
prerelease: false