From 15040a1ff74a1bdd2fd9606bd0cf2c288475f204 Mon Sep 17 00:00:00 2001 From: Justin Georgi Date: Sun, 9 Jun 2024 10:37:28 -0700 Subject: [PATCH] Fix action secret Signed-off-by: Justin Georgi --- .gitea/workflows/dev-build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/dev-build.yaml b/.gitea/workflows/dev-build.yaml index 3c52449..3a10e69 100644 --- a/.gitea/workflows/dev-build.yaml +++ b/.gitea/workflows/dev-build.yaml @@ -10,9 +10,11 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Debug ssh security + env: + secTest: ${{ secrets.test_secret }} run: | sudo apt-get install sshpass - echo ${{ secret.test_secret}} + echo $secTest - name: Check out repository code uses: actions/checkout@v4 - name: Install node modules