From f76620200348c8e79a7573603f111042af712fec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=84=B8?= Date: Thu, 9 Jan 2025 21:51:39 +0900 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index e008da1..1e88c0c 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -42,10 +42,15 @@ jobs: python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Set Permission + run: | + cd app + chmod +x run.sh + chmod +x gen-config.sh + - name: Generate Config run: | - - cd app && pwd && ./gen-config.sh + pwd && ./gen-config.sh - name: Run run: |