forked from lmg-anon/mikupad
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.53 KB
/
compile_mikupad.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
58
59
name: Release Mikupad
on:
push:
tags:
- '*'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Determine Tag Name
id: Tag_Name
run: |
BUILD_NUMBER="$(git rev-list --count HEAD)"
echo "number=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
SHORT_HASH="$(git rev-parse --short=7 HEAD)"
echo "buildName=miku${BUILD_NUMBER} ${SHORT_HASH}" >> $GITHUB_OUTPUT
echo ${BUILD_NUMBER}
echo ${SHORT_HASH}
- name: Get Last Release Tag
id: last_release
run: |
echo "tag=$(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || echo 'none')" >> $GITHUB_OUTPUT
- name: Generate Changelog
id: changelog
run: |
if [ "${{ steps.last_release.outputs.tag }}" = "none" ]; then
echo "mikudayo~" > CHANGELOG.txt
else
LAST_TAG=$(git describe --tags --abbrev=0 HEAD^)
echo "Generating changelog from $LAST_TAG"
echo "$(git log $LAST_TAG..HEAD --oneline)" > CHANGELOG.txt
fi
echo "body=$(cat CHANGELOG.txt)" >> $GITHUB_OUTPUT
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.Tag_Name.outputs.number }}
name: Miku${{ steps.Tag_Name.outputs.buildName }}
body_path: CHANGELOG.txt
files: mikupad_compiled.html
token: ${{ secrets.GITHUB_TOKEN }}