-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (64 loc) · 1.68 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
65
66
67
68
69
70
71
72
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: 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}}"
draft: false
prerelease: false
changelog:
categories:
- title: 🏕 Features
labels:
- '^feat.*'
- title: 🧑💻 Dev
labels:
- '^dev.*'
- title: 🔧 Fix
labels:
- '^fix.*'
- title: 👒 Chores
labels:
- '^chore.*'