Skip to content

Commit

Permalink
cloudsmith maven
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Feb 9, 2025
1 parent 4b1c099 commit 5b14701
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ jobs:
env:
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CLOUDSMITH_MAVEN_TOKEN: ${{ secrets.CLOUDSMITH_MAVEN_TOKEN }}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Changelog
- first release
- cloudsmith maven
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<img src="./src/main/resources/icon.png" align="right" width="128px"/>

# BedSheet
[![Hosted By: Cloudsmith](https://img.shields.io/badge/OSS%20hosting%20by-cloudsmith-blue?logo=cloudsmith&style=flat-square)](https://cloudsmith.com)

Sheet is unofficial Carpet Mod [NeoForge](https://neoforged.net/) port, for Minecraft 1.21.x and above.

Expand Down
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,17 @@ publishing {
maven {
url "$projectDir/publish"
}

maven {
name = "cloudsmith"
url = "https://maven.cloudsmith.io/thinkingstudio/bedsheet/"
def releasesRepoUrl = "https://maven.cloudsmith.io/thinkingstudio/bedsheet/"
def snapshotsRepoUrl = "https://maven.cloudsmith.io/thinkingstudio/bedsheet/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = 'tex-true'
password = System.getenv("CLOUDSMITH_MAVEN_TOKEN")
}
}
}
}

0 comments on commit 5b14701

Please sign in to comment.