diff options
author | Allan Wang <me@allanwang.ca> | 2021-09-12 01:01:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-12 01:01:06 -0700 |
commit | 771676db9f4fb3cf525b8f40fb1d7b1dbac59405 (patch) | |
tree | 25ac56b1d229ff30dca49d1b6bfe9af459f7452f /files | |
parent | 8b82044c8573e8115d81e3289c8b7e3bf0016584 (diff) | |
download | frost-771676db9f4fb3cf525b8f40fb1d7b1dbac59405.tar.gz frost-771676db9f4fb3cf525b8f40fb1d7b1dbac59405.tar.bz2 frost-771676db9f4fb3cf525b8f40fb1d7b1dbac59405.zip |
Github actions (#1797)
* Add android workflow
* Test without dynamic artifact name
* Add back spotless ktlint version
* Always decrypt secret
* Ignore ci for l10n_dev [skip ci]
* Rename test asset
* Use github run number var
* Test github context var
* Add legacy build release
* Test step 1
* Test next steps
* Test prev version step
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Partial test
* Enable full flow
* Test build
* Test build
* Full release v2
* Use pitched apps email
* Echo release link [skip ci]
* Fix should release
Diffstat (limited to 'files')
-rw-r--r-- | files/.gitignore | 3 | ||||
-rw-r--r-- | files/frost_github.tar.gpg | bin | 0 -> 4468 bytes | |||
-rw-r--r-- | files/github_actions.sh | 9 |
3 files changed, 12 insertions, 0 deletions
diff --git a/files/.gitignore b/files/.gitignore index 812c710e..d5e6b79c 100644 --- a/files/.gitignore +++ b/files/.gitignore @@ -3,3 +3,6 @@ release.properties test.keystore test.properties update-dev.sh + +frost.tar +frost_github.tar diff --git a/files/frost_github.tar.gpg b/files/frost_github.tar.gpg Binary files differnew file mode 100644 index 00000000..81d327df --- /dev/null +++ b/files/frost_github.tar.gpg diff --git a/files/github_actions.sh b/files/github_actions.sh new file mode 100644 index 00000000..9cfa4fff --- /dev/null +++ b/files/github_actions.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +# Add appropriate files for encryption +# https://docs.github.com/en/actions/reference/encrypted-secrets#limits-for-secrets + +rm frost_github.tar.gpg +tar cvf frost_github.tar release.keystore release.properties test.keystore test.properties +gpg --symmetric --cipher-algo AES256 frost_github.tar +rm frost_github.tar
\ No newline at end of file |