From c87280eb717947efdfc5e19e1402d973bdbb6d6f Mon Sep 17 00:00:00 2001 From: Melle Dijkstra Date: Fri, 10 Nov 2023 20:45:39 +0100 Subject: [PATCH] Patch to fix config setup in build process github actions (#18) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5d54dbd..f253357 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,6 @@ jobs: - name: Install dependencies run: npm install - name: Setup config.json file - run: cp server/config.template.json config.json + run: cp server/config.template.json server/config.json - name: Run build run: npm run build