From 10e4265183260e65c9c3c8d2f694d28cea6bc838 Mon Sep 17 00:00:00 2001 From: Peter John Arao Date: Sat, 11 Jan 2025 21:40:51 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Fix=20syntax=20error=20in=20publ?= =?UTF-8?q?ish.yml=20for=20environment=20variable=20creation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 813b9471..6d77a230 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -82,7 +82,7 @@ jobs: - name: Create env file run: | touch .env - echo APP_PASS_PHRASE=${{ secrets.APP_PASS_PHRASE } >> .env + echo APP_PASS_PHRASE=${{ secrets.APP_PASS_PHRASE }} >> .env echo FILE_ENCRYPTION_SALT=${{ secrets.FILE_ENCRYPTION_SALT }} >> .env cat .env - name: Build Tauri app