From ea23e91c1583d612978943be86d0622d33a4fe1a Mon Sep 17 00:00:00 2001 From: sambokar Date: Tue, 2 Apr 2024 23:14:38 -0400 Subject: [PATCH] syntax error from workflow change, testing fix --- .../new-file-upload-system-alternate-forestgeo-livesite.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/new-file-upload-system-alternate-forestgeo-livesite.yml b/.github/workflows/new-file-upload-system-alternate-forestgeo-livesite.yml index 334cd8ee..0dcc20d8 100644 --- a/.github/workflows/new-file-upload-system-alternate-forestgeo-livesite.yml +++ b/.github/workflows/new-file-upload-system-alternate-forestgeo-livesite.yml @@ -42,10 +42,9 @@ jobs: echo NODE_ENV=development >> frontend/.env echo PORT=3000 >> frontend/.env - - name: add in certificate (in frontend/ directory) + - name: Write Certificate to File run: | - touch frontend/DigiCertGlobalRootCA.crt.pem - echo ${{ secrets.CERTIFICATE }} >> frontend/DigiCertGlobalRootCA.crt.pem + echo "${{ secrets.CERTIFICATE }}" > frontend/DigiCertGlobalRootCA.crt.pem - name: Cache node modules uses: actions/cache@v2