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: |