Version 1.4.0
Added setting GPG_TTY Made GPG_TTY global Added GPG_TTY setup for each platforms
This commit is contained in:
parent
938bd54f2b
commit
0235444814
3 changed files with 12 additions and 6 deletions
6
.github/workflows/publish.yml
vendored
6
.github/workflows/publish.yml
vendored
|
@ -26,6 +26,8 @@ jobs:
|
|||
|
||||
- name: Import key
|
||||
run: echo "${{ secrets.SIGN_SECRET_KEY }}" | gpg --batch --import
|
||||
env:
|
||||
GPG_TTY: ${{ env.tty }}
|
||||
|
||||
- name: Publish Multiplatform release
|
||||
run: ./gradlew publishKotlinMultiplatformPublicationToOSSRHRepository
|
||||
|
@ -55,6 +57,8 @@ jobs:
|
|||
|
||||
- name: Import key
|
||||
run: echo "${{ secrets.SIGN_SECRET_KEY }}" | gpg --batch --import
|
||||
env:
|
||||
GPG_TTY: ${{ env.tty }}
|
||||
|
||||
- name: Publish Linux x64 release
|
||||
run: ./gradlew publishLinuxX64PublicationToOSSRHRepository
|
||||
|
@ -84,6 +88,8 @@ jobs:
|
|||
|
||||
- name: Import key
|
||||
run: echo "${{ secrets.SIGN_SECRET_KEY }}" | gpg --batch --import
|
||||
env:
|
||||
GPG_TTY: ${{ env.tty }}
|
||||
|
||||
- name: Publish
|
||||
run: ./gradlew ${{ matrix.target }}
|
||||
|
|
10
README.md
10
README.md
|
@ -2,15 +2,15 @@
|
|||
[](https://kotlinlang.org/)
|
||||
[](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/urlencoder/)
|
||||
[](https://github.com/ethauvin/urlencoder/releases/latest)
|
||||
[](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/urlencoder)
|
||||
[](https://search.maven.org/search?q=g:net.thauvin.erik.urlencoder)
|
||||
|
||||
[](https://sonarcloud.io/dashboard?id=ethauvin_urlencoder)
|
||||
[](https://github.com/ethauvin/urlencoder/actions/workflows/gradle.yml)
|
||||
[](https://github.com/ethauvin/urlencoder/actions/workflows/gradle.yml)
|
||||
|
||||
# URL Encoder for Kotlin
|
||||
# URL Encoder for Kotlin Multiplatform
|
||||
|
||||
UrlEncoder is a simple defensive Kotlin Multiplatform library to encode/decode URL components.
|
||||
UrlEncoder is a simple defensive library to encode/decode URL components.
|
||||
|
||||
This library was adapted from the [RIFE2 Web Application Framework](https://rife2.com).
|
||||
A pure Java version can also be found at [https://github.com/gbevin/urlencoder](https://github.com/gbevin/urlencoder).
|
||||
|
@ -77,8 +77,8 @@ to the artifact URL.
|
|||
</dependency>
|
||||
```
|
||||
|
||||
Instructions for using with Maven, Ivy, etc. can be found on
|
||||
[Maven Central](https://search.maven.org/artifact/net.thauvin.erik/urlencoder).
|
||||
Instructions for using with Ivy, etc. can be found on
|
||||
[Maven Central](https://search.maven.org/search?q=g:net.thauvin.erik.urlencoder).
|
||||
|
||||
## Standalone usage
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ plugins {
|
|||
}
|
||||
|
||||
group = "net.thauvin.erik.urlencoder"
|
||||
version = "1.4.0-SNAPSHOT"
|
||||
version = "1.4.0"
|
||||
|
||||
dependencies {
|
||||
kover(projects.urlencoderLib)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue