Remove openpgp-ktx
This commit is contained in:
parent
a1f838151e
commit
4548140cae
3 changed files with 4 additions and 16 deletions
14
.github/workflows/deploy_library_releases.yml
vendored
14
.github/workflows/deploy_library_releases.yml
vendored
|
@ -2,7 +2,6 @@ name: Release library subprojects
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- openpgp-ktx-v*
|
|
||||||
- autofill-parser-v*
|
- autofill-parser-v*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -18,21 +17,10 @@ jobs:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
java-version: 17
|
java-version: 17
|
||||||
|
|
||||||
- name: Determine publishing task
|
|
||||||
id: task-select
|
|
||||||
run: |
|
|
||||||
set -x
|
|
||||||
TAG=${GITHUB_REF/refs\/tags\//}
|
|
||||||
if [[ "${TAG}" =~ "openpgp-ktx" ]]; then
|
|
||||||
echo '::set-output name=PROJECT::openpgp-ktx'
|
|
||||||
elif [[ "${TAG}" =~ "autofill-parser" ]]; then
|
|
||||||
echo '::set-output name=PROJECT::autofill-parser'
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Upload binaries
|
- name: Upload binaries
|
||||||
uses: gradle/gradle-build-action@v2.2.1
|
uses: gradle/gradle-build-action@v2.2.1
|
||||||
with:
|
with:
|
||||||
arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
|
arguments: --no-configuration-cache :autofill-parser:publishAllPublicationsToMavenCentralRepository
|
||||||
env:
|
env:
|
||||||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
|
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
|
||||||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
|
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# openpgp-ktx [![Maven Central](https://img.shields.io/maven-central/v/com.github.android-password-store/openpgp-ktx.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.android-password-store%22%20AND%20a:%22openpgp-ktx%22)
|
# [DEPRECATED] openpgp-ktx [![Maven Central](https://img.shields.io/maven-central/v/com.github.android-password-store/openpgp-ktx.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.android-password-store%22%20AND%20a:%22openpgp-ktx%22)
|
||||||
|
|
||||||
|
> Android Password Store no longer uses this library and thus is not maintaining it actively.
|
||||||
|
|
||||||
Reimplementation of [OpenKeychain]'s integration library [openpgp-api]. Written entirely in Kotlin, it leverages Jetpack to be compatible with modern apps, unlike the original library.
|
Reimplementation of [OpenKeychain]'s integration library [openpgp-api]. Written entirely in Kotlin, it leverages Jetpack to be compatible with modern apps, unlike the original library.
|
||||||
|
|
||||||
|
|
|
@ -121,8 +121,6 @@ include("crypto-pgpainless")
|
||||||
|
|
||||||
include("format-common")
|
include("format-common")
|
||||||
|
|
||||||
include("openpgp-ktx")
|
|
||||||
|
|
||||||
include("passgen:diceware")
|
include("passgen:diceware")
|
||||||
|
|
||||||
include("passgen:random")
|
include("passgen:random")
|
||||||
|
|
Loading…
Reference in a new issue