From 9be90eab97e41a2eafa45c88c09de155ae6940c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Gessler?= <36667834+gessfred@users.noreply.github.com> Date: Sun, 7 Jan 2024 23:08:52 +0000 Subject: [PATCH] fix app action trigger --- .github/workflows/nginx.yml | 2 +- app/serve.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nginx.yml b/.github/workflows/nginx.yml index 7d70894..172bc3b 100644 --- a/.github/workflows/nginx.yml +++ b/.github/workflows/nginx.yml @@ -4,7 +4,7 @@ on: push: branches: [ main ] paths: - - 'web/**' + - 'app/**' jobs: build: diff --git a/app/serve.sh b/app/serve.sh index 72e2c5c..5d2da2e 100644 --- a/app/serve.sh +++ b/app/serve.sh @@ -1,2 +1,2 @@ #!/bin/sh -serve -s /app/build -l "tcp://0.0.0.0:$HTTP_PORT" \ No newline at end of file +serve -s /app/dist -l "tcp://0.0.0.0:$HTTP_PORT" \ No newline at end of file