Skip to content

Commit

Permalink
Merge pull request #27 from Crazy-Marvin/rc-1.1.1
Browse files Browse the repository at this point in the history
Release candidate 1.1.1
  • Loading branch information
janheinrichmerker authored May 20, 2022
2 parents 795c204 + ec0204a commit 17788af
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,24 @@ _Happy sharing! 😽_

## Deployment

### Encoding secrets
### Encoding/decoding secrets

```shell script
To decode the secrets, run:

```shell
cd secret
gpg --quiet --batch --yes --decrypt --output secrets.tar secrets.tar.gpg
tar -xf secrets.tar
cd ..
```

To encode the secrets, run:

```shell
cd secret
tar -cf secrets.tar --exclude=secrets.tar --exclude=secrets.tar.gpg --exclude=.gitignore .
gpg --symmetric --cipher-algo AES256 --output secrets.tar.gpg secrets.tar
cd ..
```

The same password needs to be saved as `FILES_PASSPHRASE` variable
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ object Versions {
val app = Version(
major = 1,
minor = 1,
patch = 0
patch = 1
)

val sdk = Sdk

object Sdk {
const val compile = 28
const val compile = 30
const val min = 19
const val target = 28
const val target = 30
}

val jvm = JavaVersion.VERSION_1_8
Expand Down
Empty file modified gradlew.bat
100755 → 100644
Empty file.

0 comments on commit 17788af

Please sign in to comment.