forked from Theia-Scientific/balena-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 957 Bytes
/
release.yml
File metadata and controls
35 lines (29 loc) · 957 Bytes
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
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read changelog
id: changelog
run: |
awk '/^## / {s++} s == 1 {print}' CHANGELOG.md > release_notes.md
export RELEASE_TITLE=$(head -1 release_notes.md|sed 's/## //')
awk 'NR > 2 { print }' release_notes.md > release_body.md
echo "title=${RELEASE_TITLE}" >> $GITHUB_OUTPUT
echo "path=release_body.md" >> $GITHUB_OUTPUT
echo "version=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
- name: Create release
id: create_release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref }}
name: ${{ steps.changelog.outputs.title }}
body_path: ${{ steps.changelog.outputs.path }}
token: ${{ secrets.GITHUB_TOKEN }}
draft: true