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 }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue