Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/added-path-argument
Browse files Browse the repository at this point in the history
  • Loading branch information
MekDrop committed Jun 26, 2022
2 parents 79f2d3f + f1c36db commit b76d5eb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,18 @@ jobs:
uses: actions/checkout@v2
with:
repository: ImpressCMS/impresscms

- name: Installing PHP...
uses: shivammathur/[email protected]
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/[email protected]
uses: impresscms-dev/[email protected].1
with:
database_name: icms
database_user: root
Expand Down
10 changes: 9 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,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
working-directory: ${{ inputs.path }}

Expand Down

0 comments on commit b76d5eb

Please sign in to comment.