From 9ed554098b698ccda14b23c8e7a9c8d24077c8ea Mon Sep 17 00:00:00 2001 From: Owen Waller Date: Fri, 22 Mar 2024 17:47:59 +0000 Subject: [PATCH] Fix: Put the test config file in the home directory The confile file needs to be placed in either the home directory or /etc/emailformgateway. Correct the scp so that the config file is placed in the home directory and not under the emailformgateway as was the case. --- .github/workflows/emailformgateway.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/emailformgateway.yaml b/.github/workflows/emailformgateway.yaml index 390edee..25f047e 100644 --- a/.github/workflows/emailformgateway.yaml +++ b/.github/workflows/emailformgateway.yaml @@ -80,7 +80,8 @@ jobs: - name: Copy files to server run: | - scp ./emailformgateway ./test_envs.sh ./emailer.test ./server.test ./*.template ./gophercoders-config.toml $TEST_CONFIG_FILE.toml gophercoders.com:emailformgateway + scp ./emailformgateway ./test_envs.sh ./emailer.test ./server.test ./*.template $TEST_CONFIG_FILE.toml gophercoders.com:emailformgateway + scp ./gophercoders-config.toml $TEST_CONFIG_FILE.toml gophercoders.com: env: TEST_CONFIG_FILE: ${{ secrets.TEST_CONFIG_FILE }}