-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (51 loc) · 1.5 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
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: |
VERSION=$(grep -oP 'version = "\K[0-9]+\.[0-9]+\.[0-9]+' build.gradle.kts)
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Verify tag change
id: check_tag
run: |
if git show-ref --tags --verify --quiet "refs/tags/v${{ env.VERSION }}"; then
echo "TAG_EXISTS=true" >> $GITHUB_ENV
else
echo "TAG_EXISTS=false" >> $GITHUB_ENV
fi
- name: Build with Gradle
run: |
chmod +x ./gradlew
./gradlew shadowJar
- name: Post GitHub Release
uses: svenstaro/upload-release-action@v2
if: env.TAG_EXISTS == 'false'
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