-
Notifications
You must be signed in to change notification settings - Fork 205
57 lines (53 loc) · 1.76 KB
/
create-gh-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
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Create Release
on:
workflow_dispatch:
inputs:
version:
description: Github release marker, i.e. 4.20.1
required: true
type: string
permissions:
contents: write
jobs:
changelog:
runs-on: ubuntu-latest
name: Changelog for the release
outputs:
content: ${{ steps.changelog.outputs.content }}
steps:
- name: Checkout wiki code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
with:
repository: ${{github.repository}}.wiki
- name: Extract Changelog
id: changelog
run: |
changelog=`sed '/${{ inputs.version }}/,/^## .*/!d' Changelog.md | sed '$d' | sed 's/^* /- /'`
echo $changelog
echo "content=`echo $changelog`" >> $GITHUB_OUTPUT
release:
needs: [ changelog ]
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Verify Changelog
run: |
echo '${{ needs.changelog.outputs.content }}'
# - name: Checkout code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
# - name: Push Tag
# run: |
# git config --global user.name "@spring-projects/spring-ide-admin"
# git tag -a ${{ inputs.version }}.RELEASE -m "${{ inputs.version }}.RELEASE"
# git push --tags
# - name: Create Release
# uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# id: ${{ inputs.version }}.RELEASE
# tag_name: ${{ inputs.version }}.RELEASE
# release_name: Release ${{ inputs.version }}.RELEASE
# body: ${{ needs.changelog.outputs.content }}
# draft: true
# prerelease: false