Skip to content

Commit

Permalink
GH Publish (#4)
Browse files Browse the repository at this point in the history
* build - Fix NOTICE

* build - publish to GH Packages

* build - GH action to publish to GH packages

* build - Update check notice

* Update .github/workflows/publish.yml

Co-authored-by: Sally MacFarlane <[email protected]>

* build - Update groupId

---------

Signed-off-by: Sally MacFarlane <[email protected]>
Co-authored-by: Sally MacFarlane <[email protected]>
  • Loading branch information
usmansaleem and macfarla authored May 9, 2024
1 parent 09cb122 commit 92f5726
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 7 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#
# Licensed to the Consensys Software Inc under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# This is adapted from https://docs.github.com/en/actions/publishing-packages/publishing-java-packages-with-gradle

name: Publish package to GitHub Packages
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
container:
image: tmio/tuweni-build:1.2
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0

- name: Publish package
run: ./gradlew publishAllPublicationsToGitHubPackagesRepository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24 changes: 17 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ allprojects {
publishing {
repositories {
maven {
name = "OSSRH"
def isRelease = buildVersion.endsWith('SNAPSHOT')
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots"
Expand Down Expand Up @@ -355,14 +356,23 @@ allprojects {
}
}
}

maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/consensys/tuweni"
credentials {
username = System.getenv('GITHUB_ACTOR')
password = System.getenv('GITHUB_TOKEN')
}
}
}
publications {
MavenDeployment(MavenPublication) { publication ->
if (project != rootProject) {
from components.java
artifact sourcesJar { classifier 'sources' }
}
groupId 'io.tmio'
groupId 'io.consensys.protocols'
artifactId 'tuweni-' + project.name
version project.version

Expand All @@ -378,17 +388,17 @@ allprojects {
pom {
name = project.name
afterEvaluate { description = project.description }
url = 'https://github.com/tmio/tuweni'
url = 'https://github.com/consensys/tuweni'
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
scm {
connection = 'scm:https://github.com/tmio/tuweni.git'
developerConnection = 'scm:[email protected]:tmio/tuweni.git'
url = 'https://github.com/tmio/tuweni'
connection = 'scm:https://github.com/consensys/tuweni.git'
developerConnection = 'scm:[email protected]:consensys/tuweni.git'
url = 'https://github.com/consensys/tuweni'
}
developers {
developer {
Expand All @@ -400,7 +410,7 @@ allprojects {
}
issueManagement {
system = "github"
url = "https://www.github.com/tmio/tuweni/issues"
url = "https://www.github.com/consensys/tuweni/issues"
}
}

Expand All @@ -415,7 +425,7 @@ allprojects {
def addDependencyNode = { dep, optional, scope ->
def dependencyNode = dependenciesNode.appendNode('dependency')
if (dep instanceof ProjectDependency) {
dependencyNode.appendNode('groupId', 'io.tmio')
dependencyNode.appendNode('groupId', 'io.consensys')
dependencyNode.appendNode('artifactId', rootProject.name + '-' + dep.name)
dependencyNode.appendNode('version', dep.version)
} else {
Expand Down

0 comments on commit 92f5726

Please sign in to comment.