From 80e849038f5b08fe3fd5f8c0b8553f02fca930b2 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Mon, 8 Jul 2024 13:56:03 -0300 Subject: [PATCH] fix: secret Signed-off-by: Vitor Mattos --- .github/workflows/appstore-build-publish.yml | 1 + .gitignore | 1 + Makefile | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/appstore-build-publish.yml b/.github/workflows/appstore-build-publish.yml index a4987a71a..485bb5670 100644 --- a/.github/workflows/appstore-build-publish.yml +++ b/.github/workflows/appstore-build-publish.yml @@ -144,6 +144,7 @@ jobs: # Setting up keys mkdir -p build/tools/certificates/ echo '${{ secrets.APP_PRIVATE_KEY }}' > build/tools/certificates/${{ env.APP_NAME }}.key + ls -la build/tools/certificates/ make appstore - name: Sign app diff --git a/.gitignore b/.gitignore index 1aee29c22..c7c3d658a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .idea .vscode .env +.secrets *.iml /vendor/ /vendor-bin/**/vendor/ diff --git a/Makefile b/Makefile index 001cb14b5..25acccb20 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,6 @@ appstore: --admin-pass admin; \ $(occ) --version; \ $(occ) app:enable --force libresign; \ - printf '%s\n' "$$APP_PRIVATE_KEY" > $(cert_dir)/$(app_name).key ; \ echo "🏁 Setup finished"; \ fi