Initial publish
This commit is contained in:
parent
e2764a5473
commit
e84ea41dd7
|
@ -6,6 +6,8 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
jobs:
|
jobs:
|
||||||
lint-and-test:
|
lint-and-test:
|
||||||
name: Lint and test library
|
name: Lint and test library
|
||||||
|
@ -26,4 +28,30 @@ jobs:
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
|
|
||||||
- name: Run checks
|
- name: Run checks
|
||||||
run: ./gradlew check
|
run: ./gradlew check
|
||||||
|
publish:
|
||||||
|
name: Publish package
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- lint-and-test
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Java
|
||||||
|
uses: actions/setup-java@v3
|
||||||
|
with:
|
||||||
|
distribution: 'adopt'
|
||||||
|
java-version: 17
|
||||||
|
|
||||||
|
- name: Verify Gradle wrapper
|
||||||
|
uses: gradle/wrapper-validation-action@v1
|
||||||
|
|
||||||
|
- name: Setup Gradle
|
||||||
|
uses: gradle/gradle-build-action@v2
|
||||||
|
|
||||||
|
- name: Publish to Gitea package repository
|
||||||
|
env:
|
||||||
|
TINYVM_VERSION: "0.0.0" # testing for now
|
||||||
|
GITEA_USERNAME: ${{ github.repository_owner }}
|
||||||
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
||||||
|
run: ./gradlew publishAllPublicationsToGiteaRepository
|
|
@ -1,10 +1,11 @@
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.9.21"
|
kotlin("jvm") version "1.9.21"
|
||||||
id("org.jmailen.kotlinter") version "4.1.0"
|
id("org.jmailen.kotlinter") version "4.1.0"
|
||||||
|
`maven-publish`
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "net.koval"
|
group = "net.koval.teamcity-gitea-test-task"
|
||||||
version = "1.0-SNAPSHOT"
|
version = System.getenv("TINYVM_VERSION")
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -20,4 +21,39 @@ tasks.test {
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
jvmToolchain(17)
|
jvmToolchain(17)
|
||||||
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications.register<MavenPublication>("gpr") {
|
||||||
|
artifactId = "tinyvm"
|
||||||
|
from(components["java"])
|
||||||
|
pom {
|
||||||
|
name.set("TeamCity support for Gitea - Test Task - tiny version manager")
|
||||||
|
description.set("This is a small project to implement a subset of git's functionality in Kotlin and was " +
|
||||||
|
"created using the instructions below as part of my application to the JetBrains internship project " +
|
||||||
|
"\"TeamCity support for Gitea\".")
|
||||||
|
url.set("https://git.koval.net/cyclane/teamcity-gitea-test-task")
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id.set("cyclane")
|
||||||
|
name.set("Gleb Koval")
|
||||||
|
email.set("gleb@koval.net")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scm {
|
||||||
|
url.set("https://git.koval.net/cyclane/teamcity-gitea-test-task")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
name = "Gitea"
|
||||||
|
url = uri("https://git.koval.net/api/packages/cyclane/maven")
|
||||||
|
credentials {
|
||||||
|
username = System.getenv("GITEA_USERNAME")
|
||||||
|
password = System.getenv("GITEA_TOKEN")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Reference in New Issue