-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (64 loc) · 2.1 KB
/
version-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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Create Release on Version Update
on:
push:
branches:
- main
jobs:
create_release:
runs-on: ubuntu-latest
env:
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
- name: Extract version from build.gradle.kts
id: get_version
run: |
FULL_VERSION=$(grep -oP 'version = "\K[0-9]+\.[0-9]+\.[0-9]+(?:-\w*)?' build.gradle.kts)
echo "FULL_VERSION=$FULL_VERSION" >> $GITHUB_ENV
VERSION=$(grep -oP 'version = "\K[0-9]+\.[0-9]+\.[0-9]+' build.gradle.kts)
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Check if version is release ready
uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
text: ${{ env.FULL_VERSION }}
regex: '[a-zA-Z]'
flags: gm
- name: Set project release type
if: ${{ steps.regex-match.outputs.match == '' }}
run: |
if git show-ref --tags --verify --quiet "refs/tags/v${{ env.VERSION }}"; then
echo "RELEASE_TYPE=alpha" >> $GITHUB_ENV
else
echo "RELEASE_TYPE=release" >> $GITHUB_ENV
fi
- name: Set project release type
if: ${{ steps.regex-match.outputs.match != '' }}
run: |
echo "RELEASE_TYPE=alpha" >> $GITHUB_ENV
- name: Build with Gradle
run: |
chmod +x ./gradlew
./gradlew shadowJar
- name: Post GitHub Release
uses: svenstaro/upload-release-action@v2
if: env.RELEASE_TYPE == 'release'
with:
repo_token: ${{ secrets.REPO_TOKEN }}
file: build/libs/*.jar
file_glob: true
asset_name: PluginUpdater-${{ env.VERSION }}
tag: v${{ env.VERSION }}
overwrite: false
- name: Post Modrinth Release
run: |
chmod +x ./gradlew
./gradlew modrinth