Skip to content

Commit

Permalink
fix: Remove Github maven publishing (#7)
Browse files Browse the repository at this point in the history
* fix: Removing Gihhub maven publishing
* chore: Upgrading pre-release version to 0.1.3

---------

Signed-off-by: Usman Saleem <[email protected]>
  • Loading branch information
usmansaleem authored Mar 15, 2024
1 parent 432caed commit da5f079
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ jobs:
- name: Build with Gradle
run: ./gradlew build

- name: Publish to GitHub Packages
run: ./gradlew publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to JFrog Artifactory
run: ./gradlew artifactoryPublish
env:
Expand Down
11 changes: 0 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,6 @@ publishing {
}
}

repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/hyperledger/besu-errorprone-checks"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}

def artifactoryUser = project.hasProperty('artifactoryUser') ? project.property('artifactoryUser') : System.getenv('ARTIFACTORY_USER')
def artifactoryKey = project.hasProperty('artifactoryApiKey') ? project.property('artifactoryApiKey') : System.getenv('ARTIFACTORY_KEY')
def artifactoryRepo = System.getenv('ARTIFACTORY_REPO') ?: 'besu-maven'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.1.2
version=0.1.3

org.gradle.welcome=never

Expand Down

0 comments on commit da5f079

Please sign in to comment.