Skip to content

Commit

Permalink
Fix a compile issue with workflows (#724)
Browse files Browse the repository at this point in the history
### Other Fixes:
* Fixed an issue with QuickCrate where holograms were stacking.
* Fixed an issue where the display name of the item above QuickCrate had [] around it i.e. [Diamond Helmet]
  • Loading branch information
ryderbelserion authored May 20, 2024
1 parent 5a22448 commit 5940d29
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ jobs:
title: A new version of CrazyCrates is ready.
color: 0xE91E63
description: |
* <:hangar:1139326635313733652> https://hangar.papermc.io/CrazyCrew/CrazyCrates/versions/3.0-${{env.NEXT_BUILD_NUMBER}}
* <:modrinth:1115307870473420800> https://modrinth.com/plugin/crazycrates/version/3.0-${{env.NEXT_BUILD_NUMBER}}
* <:hangar:1139326635313733652> https://hangar.papermc.io/CrazyCrew/CrazyCrates/versions/${{ env.version }}-${{ env.NEXT_BUILD_NUMBER }}
* <:modrinth:1115307870473420800> https://modrinth.com/plugin/crazycrates/version/${{ env.version }}-${{ env.NEXT_BUILD_NUMBER }}
- name: Build Failed
uses: sarisia/actions-status-discord@v1
Expand All @@ -107,8 +107,8 @@ jobs:
title: The build didn't survive.
color: 0xff0000
description: |
Version 2.1 build ${{env.NEXT_BUILD_NUMBER}} has died.
Click [here](${{github.server_url}}/${{github.repository}}/actions/runs/${{ github.run_id }}) to view the run.
Version ${{ env.version }} build ${{ env.NEXT_BUILD_NUMBER }} has died.
Click [here](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) to view the run.
# https://github.com/granny/Pl3xMap/blob/1df593e5706444de28fc61855df5a7552afcd3c7/.github/workflows/build.yml#L95
- uses: actions/github-script@v6
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/java-plugin.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
repositories {
maven("https://repo.codemc.io/repository/maven-public")

maven("https://repo.crazycrew.us/snapshots")
maven("https://repo.crazycrew.us/releases")

maven("https://jitpack.io")

Expand Down
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ org.gradle.parallel=false
group=com.badbones69.crazycrates
authors=["ryderbelserion", "BadBones69", "TDL"]
description=Create unlimited crates with multiple crate types to choose from!
website=https://modrinth.com/plugin/crazycrates
website=https://modrinth.com/plugin/crazycrates

version=3.0
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
run-paper = { id = "xyz.jpenilla.run-paper", version = "2.3.0" }

[versions]
vital = "1.0-snapshot"
vital = "1.1"

[libraries]
itemsadder-api = { group = "com.github.LoneDev6", name = "api-itemsadder", version = "3.6.1" }
Expand Down

0 comments on commit 5940d29

Please sign in to comment.