File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 2727 with :
2828 name : ${{ github.event.repository.name }}
2929 path : build/libs/${{ github.event.repository.name }}.jar
30+
31+ - name : Create Release on GitHub
32+ id : create_release
33+ uses : softprops/action-gh-release@v1
34+ with :
35+ tag_name : " v${{ github.run_number }}"
36+ name : " Release v${{ github.run_number }}"
37+ body : " Automated release of version v${{ github.run_number }}."
38+ draft : false
39+ prerelease : false
40+ files : build/libs/*.jar
41+ env :
42+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public static void initDatabase(){
5050 Core .app .exit ();
5151 }
5252
53- db = mongoClient .getDatabase ("mindustry " ).withCodecRegistry (pojoCodecRegistry );
53+ db = mongoClient .getDatabase ("frostheaven " ).withCodecRegistry (pojoCodecRegistry );
5454 playerCollection = db .getCollection ("players" , PlayerData .class );
5555 rankCollection = db .getCollection ("ranks" , Rank .class );
5656 }
You can’t perform that action at this time.
0 commit comments