Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH Publish #4

Merged
merged 9 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading