From 8ed1cc54be5eb8caa48bd8d5dc4e388c139ac58b Mon Sep 17 00:00:00 2001 From: Sys <28715512+sys-001@users.noreply.github.com> Date: Tue, 24 Aug 2021 13:18:02 +0200 Subject: [PATCH] Prepend 'php' to every command --- .github/workflows/pages.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 9c2389d..d2c5f28 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -18,11 +18,11 @@ jobs: image: ghcr.io/sysbot-org/tgscraper:latest options: -v ${{ github.workspace }}:/out run: | - '/app/vendor/bin/tgscraper app:export-schema --readable botapi.json' - '/app/vendor/bin/tgscraper app:export-schema --yaml --readable botapi.yaml' - '/app/vendor/bin/tgscraper app:export-schema --postman --readable botapi_postman.json' - '/app/vendor/bin/tgscraper app:export-schema --openapi --readable botapi_openapi.json' - '/app/vendor/bin/tgscraper app:export-schema --yaml --openapi --readable botapi_openapi.yaml' + 'php /app/vendor/bin/tgscraper app:export-schema --readable botapi.json' + 'php /app/vendor/bin/tgscraper app:export-schema --yaml --readable botapi.yaml' + 'php /app/vendor/bin/tgscraper app:export-schema --postman --readable botapi_postman.json' + 'php /app/vendor/bin/tgscraper app:export-schema --openapi --readable botapi_openapi.json' + 'php /app/vendor/bin/tgscraper app:export-schema --yaml --openapi --readable botapi_openapi.yaml' - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: