We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 153b2a4 commit c4217f2Copy full SHA for c4217f2
3 files changed
.github/workflows/work-jar.yml
@@ -3,6 +3,7 @@ on:
3
push:
4
branches:
5
- main
6
+ - fix/mcs
7
permissions:
8
contents: write
9
pages: write
build.gradle
@@ -5,7 +5,7 @@ plugins {
}
group = 'fr.sandro642.github'
-version = '0.2.4-STABLE'
+version = '0.2.4.1-SNAPSHOT'
10
tasks.register('printVersion') {
11
doLast {
src/main/java/fr/sandro642/github/hook/MCSupport.java
@@ -114,6 +114,9 @@ public void resetPlugin() {
114
* @return The singleton instance of MCSupport.
115
*/
116
public static MCSupport getInstance() {
117
+ if (instance == null) {
118
+ instance = new MCSupport();
119
+ }
120
return instance;
121
122
0 commit comments