From 6fb849b7c01c7a8caaf37184c070896cde64fd6e Mon Sep 17 00:00:00 2001 From: Christoph <1+christoph@noreply.localhost> Date: Fri, 25 Sep 2026 23:06:41 +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