Skip to content

Commit

Permalink
MMM update
Browse files Browse the repository at this point in the history
  • Loading branch information
enjarai committed Nov 13, 2023
1 parent 484038d commit 47a198d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/publish_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,20 @@ jobs:
game_vers: |
1.20
1.20.1
java_vers: 17
GITHUB_REF: ${{ github.ref }}
secrets:
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
PUBLISH_MAVEN_USERNAME: ${{ secrets.PUBLISH_MAVEN_USERNAME }}
PUBLISH_MAVEN_PASSWORD: ${{ secrets.PUBLISH_MAVEN_PASSWORD }}

deploy_1_20_2:
needs: deploy_1_20
uses: enjarai/do-a-barrel-roll/.github/workflows/[email protected]/dev
with:
branch: 1.20.2/dev
game_vers: |
1.20.2
java_vers: 17
GITHUB_REF: ${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
This does not apply to normal servers.
- Changed the default toggle keybind to I to avoid conflicting with the advancements button.
- Fixed an incompatibility with Keybind Fix.
- Separated 1.20 and 1.20.2 support into separate jars.
2 changes: 1 addition & 1 deletion src/main/java/nl/enjarai/doabarrelroll/DoABarrelRoll.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static void init() {
@Override
public void registerConversations(ConversationManager conversationManager) {
conversationManager.registerSource(
JsonSource.fromUrl("https://raw.githubusercontent.com/enjarai/do-a-barrel-roll/1.20/dev/src/main/resources/cicada/do-a-barrel-roll/conversations.json")
JsonSource.fromUrl("https://raw.githubusercontent.com/enjarai/do-a-barrel-roll/1.20.2/dev/src/main/resources/cicada/do-a-barrel-roll/conversations.json")
.or(JsonSource.fromResource("cicada/do-a-barrel-roll/conversations.json")),
LOGGER::info
);
Expand Down

0 comments on commit 47a198d

Please sign in to comment.