forked from lmg-anon/mikupad
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (56 loc) · 1.93 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
60
61
62
63
64
65
66
name: Release Mikupad
on:
push:
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 and Build Names
id: Tag_Name
run: |
BUILD_NUMBER="$(git rev-list --count HEAD)"
echo "number=${BUILD_NUMBER}" >> $GITHUB_OUTPUT
SHORT_HASH="$(git rev-parse --short=7 HEAD)"
echo "buildName=Mikupad #${BUILD_NUMBER} [${SHORT_HASH}]" >> $GITHUB_OUTPUT
echo ${BUILD_NUMBER}
echo ${SHORT_HASH}
- name: Get Last Release Tag
id: last_release
run: |
TAG=$(git tag --list 'release*' --sort=-v:refname | head -n 1)
if [ -z "$TAG" ]; then
echo "No release tag found"
echo "tag=$(echo 'none')" >> $GITHUB_OUTPUT
else
TAG_NUMBER=$(echo $TAG | sed 's/release//')
echo "Found release tag: $TAG"
echo "tag=$TAG_NUMBER" >> $GITHUB_OUTPUT
fi
- name: Generate Changelog
id: changelog
run: |
if [ "${{ steps.last_release.outputs.tag }}" = "none" ]; then
echo "mikudayo~" > CHANGELOG.txt
else
NEW_COMMIT="${{ steps.last_release.outputs.tag }}"
NUM_COMMITS="${{ steps.Tag_Name.outputs.number }}"
N_COMMITS="$(($NUM_COMMITS - $NEW_COMMIT))"
echo "Generating changelog starting from commit $NEW_COMMIT"
echo "```markdown\n$(git log --graph -n $N_COMMITS --oneline)```" > CHANGELOG.txt
echo "$(git log --graph -n $N_COMMITS --oneline)"
fi
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: release${{ steps.Tag_Name.outputs.number }}
name: ${{ steps.Tag_Name.outputs.buildName }}
body_path: CHANGELOG.txt
files: mikupad_compiled.html
token: ${{ secrets.GITHUB_TOKEN }}