Skip to content

Commit ea3971c

Browse files
Bump version
Add release ci
1 parent 992730d commit ea3971c

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

.github/workflows/release.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: release
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
14+
- name: Set up JDK 17
15+
uses: actions/setup-java@v3
16+
with:
17+
distribution: temurin
18+
java-version: 17
19+
20+
- name: Make gradlew executable
21+
run: chmod +x ./gradlew
22+
23+
- name: Build artifacts
24+
run: ./gradlew clean build
25+
26+
- name: Upload assets to GitHub, Modrinth and CurseForge
27+
uses: Kir-Antipov/[email protected]
28+
with:
29+
modrinth-id: jrDKjZP7
30+
modrinth-featured: false
31+
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
32+
33+
curseforge-id: 405159
34+
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
35+
36+
github-token: ${{ secrets.GITHUB_TOKEN }}
37+
38+
loaders: |
39+
fabric
40+
quilt

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ minecraft_version=1.20
66
yarn_mappings=1.20+build.1
77
loader_version=0.14.21
88
# Mod Properties
9-
mod_version=1.4.10
9+
mod_version=1.4.11
1010
maven_group=us.potatoboy
1111
archives_base_name=InvView
1212
# Dependencies

0 commit comments

Comments
 (0)