Skip to content

Commit

Permalink
release v3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
WakelessSloth56 committed Oct 3, 2022
1 parent 15f5524 commit 4656231
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
ORG_GRADLE_PROJECT_signingKey: ${{secrets.RELEASE_SIGNING_GPG_PRIVATE_KEY}}
ORG_GRADLE_PROJECT_signingPassword: ${{secrets.RELEASE_SIGNING_GPG_PASSPHRASE}}
AUIOC_MAVEN_USERNAME: ${{secrets.AUIOC_MAVEN_USERNAME}}
AUIOC_MAVEN_TOKEN: ${{secrets.AUIOC_MAVEN_TOKEN}}
run: ./gradlew clean build publish genUpdateJson

- name: Update update JSON
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ minecraft {
sourceSets.remove(sourceSets.test)

repositories {
maven {
maven {
url 'https://repo.auioc.org/maven/releases'
content { includeGroup "org.auioc.mcmod" }
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ group=org.auioc.mcmod
vendor=AUIOC
mod_id=addrlimiter
mod_name=AddrLimiter
mod_version=3.1.3
mod_version=3.1.4
8 changes: 8 additions & 0 deletions gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ publishing {
password = System.getenv('GITHUB_TOKEN')
}
}
maven {
name = 'AuiocMavenRepo'
url = uri("https://repo.auioc.com/maven/releases")
credentials {
username = System.getenv('AUIOC_MAVEN_USERNAME')
password = System.getenv('AUIOC_MAVEN_TOKEN')
}
}
maven {
name = 'McmodsRepo'
url "file://${project.projectDir}/mcmodsrepo"
Expand Down

0 comments on commit 4656231

Please sign in to comment.