From de3ccfbf34d9d7196681f4040022925ffefbe140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimondas=20Rimkevi=C4=8Dius?= Date: Sat, 25 Jun 2022 22:22:40 +0300 Subject: [PATCH 1/3] Added shivammathur/setup-php to example --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index c532289..0dc913f 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,15 @@ jobs: uses: actions/checkout@v2 with: repository: ImpressCMS/impresscms + + - name: Installing PHP... + uses: shivammathur/setup-php@2.19.1 + with: + php-version: 8.1 + extensions: curl, gd, pdo_mysql, json, mbstring, pcre, session + ini-values: post_max_size=256M + coverage: none + tools: composer:v2 - name: Installing ImpressCMS... uses: impresscms-dev/install-impresscms-action@v0.1 From 72048ee496664024e5c6aa3704bf08b3fd505589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimondas=20Rimkevi=C4=8Dius?= Date: Sat, 25 Jun 2022 22:52:42 +0300 Subject: [PATCH 2/3] Chmoding folders fix --- action.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 804b1d0..b3b2cd1 100644 --- a/action.yml +++ b/action.yml @@ -117,7 +117,15 @@ runs: if: steps.checks1.outputs.uses_phoenix == 'false' - name: Chmoding folders... - run: chmod -R 0777 ./storage ./modules ./themes ./uploads + run: | + chmod -R 0777 ./storage || true + chmod -R 0777 ./modules || true + chmod -R 0777 ./themes || true + chmod -R 0777 ./uploads || true + chmod -R 0777 ./htdocs/modules || true + chmod -R 0777 ./htdocs/themes || true + chmod -R 0777 ./htdocs/uploads || true + chmod -R 0777 ./htdocs/images || true shell: bash - name: Installing ImpressCMS @@ -140,4 +148,4 @@ runs: INSTALL_LANGUAGE: ${{ inputs.language }} APP_KEY: ${{ steps.checks2.outputs.app_key }} run: ./bin/phoenix migrate -vvv - shell: bash \ No newline at end of file + shell: bash From f1c36dbe1d56054eeda40d274d7568d5d586d2e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimondas=20Rimkevi=C4=8Dius?= Date: Sun, 26 Jun 2022 00:19:58 +0300 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dc913f..4bfeca2 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ jobs: tools: composer:v2 - name: Installing ImpressCMS... - uses: impresscms-dev/install-impresscms-action@v0.1 + uses: impresscms-dev/install-impresscms-action@v0.1.1 with: database_name: icms database_user: root