-
Notifications
You must be signed in to change notification settings - Fork 15
64 lines (56 loc) · 1.61 KB
/
release.yaml
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
58
59
60
61
62
63
64
name: Release
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
tag:
description: "Tag name, e.g. 0.0.0"
default: ""
required: true
jobs:
build:
name: Upload Release Asset
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Git set user
run: |
git config user.name "$USERNAME"
git config user.email "$USERNAME-[bot]@users.noreply.github.com"
env:
USERNAME: ${{ github.actor }}
- name: Update the VERSION
run: |
echo "$VERSION" > VERSION
env:
VERSION: ${{ github.event.inputs.tag }}
- name: Commit changes and tag it
run: |
git add VERSION
git commit -m "ci: update VERSION to $VERSION"
git tag -a "v$VERSION" -m "$VERSION"
git show --stat
env:
VERSION: ${{ github.event.inputs.tag }}
- name: Push Release tag
run: |
git push --follow-tags
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "v${{ github.event.inputs.tag }}"
release_name: "v${{github.event.inputs.tag}}"
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false