Skip to content

Commit b76d5eb

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/added-path-argument
2 parents 79f2d3f + f1c36db commit b76d5eb

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,18 @@ jobs:
3737
uses: actions/checkout@v2
3838
with:
3939
repository: ImpressCMS/impresscms
40+
41+
- name: Installing PHP...
42+
uses: shivammathur/[email protected]
43+
with:
44+
php-version: 8.1
45+
extensions: curl, gd, pdo_mysql, json, mbstring, pcre, session
46+
ini-values: post_max_size=256M
47+
coverage: none
48+
tools: composer:v2
4049

4150
- name: Installing ImpressCMS...
42-
uses: impresscms-dev/[email protected]
51+
uses: impresscms-dev/[email protected].1
4352
with:
4453
database_name: icms
4554
database_user: root

action.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,15 @@ runs:
124124
if: steps.checks1.outputs.uses_phoenix == 'false'
125125

126126
- name: Chmoding folders...
127-
run: chmod -R 0777 ./storage ./modules ./themes ./uploads
127+
run: |
128+
chmod -R 0777 ./storage || true
129+
chmod -R 0777 ./modules || true
130+
chmod -R 0777 ./themes || true
131+
chmod -R 0777 ./uploads || true
132+
chmod -R 0777 ./htdocs/modules || true
133+
chmod -R 0777 ./htdocs/themes || true
134+
chmod -R 0777 ./htdocs/uploads || true
135+
chmod -R 0777 ./htdocs/images || true
128136
shell: bash
129137
working-directory: ${{ inputs.path }}
130138

0 commit comments

Comments
 (0)