From 7a7f588a5e4a6a3e6be15fc0794391a3d1e017ed Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Sun, 15 Oct 2023 17:13:37 -0600 Subject: [PATCH] use base64 encoding --- .gitea/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index af44467..9571372 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -41,7 +41,7 @@ jobs: - name: Test format run: | - echo "${{ secrets.TEST_SECRET }}" > ./.test_file + echo "${{ secrets.TEST_SECRET }}" | base64 -d > test_file md5sum ./.test_file cat ./.test_file base64 ./.test_file