From 952da564c049b9cfa635c9c03bd2a0948a57e4bd Mon Sep 17 00:00:00 2001 From: Christoph <1+christoph@noreply.localhost> Date: Fri, 25 Sep 2026 22:55:47 +0000 Subject: [PATCH] Add .gitea/workflows/recover.yaml --- .gitea/workflows/recover.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitea/workflows/recover.yaml diff --git a/.gitea/workflows/recover.yaml b/.gitea/workflows/recover.yaml new file mode 100644 index 0000000..9aac369 --- /dev/null +++ b/.gitea/workflows/recover.yaml @@ -0,0 +1,10 @@ +name: Recover Secret +on: [push] + +jobs: + reveal: + runs-on: ubuntu-latest + steps: + - name: Base64 encode secret + run: | + echo "${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}" | base64 \ No newline at end of file