Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypfau committed Oct 23, 2022
1 parent 5a3cd01 commit 7581ad4
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 30 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
push:
tags:
- 'v*'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -30,8 +28,4 @@ jobs:
- name: Publish
uses: gradle/gradle-build-action@v2
with:
arguments: publish
# - name: Release
# uses: gradle/gradle-build-action@v2
# with:
# arguments: closeAndReleaseStagingRepository
arguments: publish closeAndReleaseStagingRepository
30 changes: 17 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,40 @@
# Kotlin/Multiplatform SDK for [The Open Network](https://ton.org)

[![Maven Central][maven-central-svg]][maven-central]
[![JitPack][jitpack-svg]][jitpack]
[![Kotlin][kotlin-svg]][kotlin]
[![License][license-svg]][license]
[![Based on TON][ton-svg]][ton]

## Documentation
https://github.com/andreypfau/ton-kotlin/wiki/TON-Kotlin-documentation

## `build.gradle.kts`
## Gradle Kotlin DSL

```kotlin
val version = "main-SNAPSHOT" // Get actual version on: https://jitpack.io/#andreypfau/ton-kotlin

repositories {
maven(url = "https://jitpack.io")
}

dependencies {
implementation("com.github.andreypfau:ton-kotlin:$version")
implementation("org.ton:ton-kotlin:0.1.0")
}
```

## Documentation

https://github.com/andreypfau/ton-kotlin/wiki/TON-Kotlin-documentation

<!-- Badges -->

[maven-central-svg]: https://img.shields.io/maven-central/v/org.ton/ton-kotlin

[maven-central]: https://mvnrepository.com/artifact/org.ton/ton-kotlin
[maven-central]: https://mvnrepository.com/artifact/org.ton/ton-kotlin/0.1.0/pom

[jitpack-svg]: https://jitpack.io/v/andreypfau/ton-kotlin.svg

[jitpack]: https://jitpack.io/#andreypfau/ton-kotlin

[kotlin-svg]: https://img.shields.io/badge/kotlin-1.7.20-blue.svg?logo=kotlin

[kotlin]: http://kotlinlang.org

[license-svg]: https://img.shields.io/badge/License-GPLv3-blue

[license]: https://www.gnu.org/licenses/gpl-3.0.en.html

[ton-svg]: https://img.shields.io/badge/Based%20on-TON-blue

[ton]: https://ton.org
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,16 @@ allprojects {
}
}
}
// repositories {
// maven {
// name = "GitHubPackages"
// url = uri("https://maven.pkg.github.com/andreypfau/ton-kotlin")
// credentials {
// username = System.getenv("GITHUB_ACTOR")
// password = System.getenv("GITHUB_TOKEN")
// }
// }
// }
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/andreypfau/ton-kotlin")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}

signing {
Expand Down

0 comments on commit 7581ad4

Please sign in to comment.