Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MetallicGoat committed Dec 10, 2022
1 parent 90e988b commit e4065f8
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 37 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
name: Build Jar

on:
push:
tags:
"v*"

jobs:
build_dev_jars:
name: Build jar
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build jar with Maven
run: mvn package --file pom.xml
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: Extra-Special-Items.jar
path: |
target/*.jar
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
files: |
LICENSE.txt
target/*.jar
#name: Build Jar
#
#on:
# push:
# tags:
# "v*"
#
#jobs:
# build_dev_jars:
# name: Build jar
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v3
# - name: Setup JDK
# uses: actions/setup-java@v3
# with:
# java-version: '11'
# distribution: 'temurin'
# - name: Build jar with Maven
# run: mvn package --file pom.xml
# - name: Upload jar
# uses: actions/upload-artifact@v3
# with:
# name: Extra-Special-Items.jar
# path: |
# target/*.jar
# - uses: "marvinpinto/action-automatic-releases@latest"
# with:
# repo_token: "${{ secrets.GITHUB_TOKEN }}"
# prerelease: true
# files: |
# LICENSE.txt
# target/*.jar
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Project exclude paths
/target/
/target/
/.idea/
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.metallicgoat</groupId>
<artifactId>Extra-Special-Items</artifactId>
<version>2.2.0-Dev-B</version>
<version>2.2.0</version>

<repositories>
<repository>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ExtraSpecialItems
author: MetallicGoat
version: 2.2.0-Dev-B
version: 2.2.0
main: me.metallicgoat.specialItems.ExtraSpecialItemsPlugin
depend: [MBedwars]
api-version: 1.13

0 comments on commit e4065f8

Please sign in to comment.