From 9f2073cabf2932a9bd0a45c3e043a5334fce2e8b Mon Sep 17 00:00:00 2001 From: Malene Lundemo Date: Fri, 7 Mar 2025 17:52:28 +0100 Subject: [PATCH] Create testmain.yml --- .github/workflows/testmain.yml | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/testmain.yml diff --git a/.github/workflows/testmain.yml b/.github/workflows/testmain.yml new file mode 100644 index 0000000..5df1200 --- /dev/null +++ b/.github/workflows/testmain.yml @@ -0,0 +1,35 @@ +name: setup nginx from the configuration file + +on: + workflow_dispatch: + +jobs: + deploy: + runs-on: self-hosted + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Dotenv Action + uses: falti/dotenv-action@v1.1.4 + with: + export-variables: true + keys-case: bypass + + - name: Check environment variables + run: env + + - name: Echo + run: echo "this is a test" + + #Doesn't work properly, envsubst replaces all instances of $variable and ${variable}, but we want to keep e.g., $host as nginx variables + - name: Create temporary nginx config file + run: envsubst '${PROD_PORT_PREFIX} ${DEV_PORT_PREFIX} ${STAG_PORT_PREFIX} ${GATEWAY_POSTFIX}' < ./nginx_template.txt > temp_default.conf + # Maybe look at https://www.baeldung.com/linux/envsubst-command to get an idea + + - name: Copy temporary file to correct place + run: cp temp_default.conf nginx/nginx_securefit.conf + #run: cp nginx/nginx.conf /etc/nginx/conf.d/nginx_securefit.conf + + - name: Show nginx file + run: cat nginx/nginx_securefit.conf