Skip to content

Commit

Permalink
testing composer with -W
Browse files Browse the repository at this point in the history
Signed-off-by: dartcafe <[email protected]>
  • Loading branch information
dartcafe committed Nov 3, 2024
1 parent ff98219 commit 5845e15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-composer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ runs:
- name: Install dev packages
if: steps.cache-composer.outputs.cache-hit != 'true' && inputs.mode == 'dev'
working-directory: ${{ inputs.working-directory }}
run: composer i -o
run: composer i -W -o
shell: bash

- name: Install production packages
if: steps.cache-composer.outputs.cache-hit != 'true' && inputs.mode == 'production'
working-directory: ${{ inputs.working-directory }}
run: composer i --no-dev -o
run: composer i -W --no-dev -o
shell: bash
2 changes: 1 addition & 1 deletion .github/actions/setup-server/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ runs:
- name: Set up components
working-directory: ${{ inputs.server-path }}/apps/${{ inputs.app-name }}
shell: bash
run: composer i
run: -W

- name: Remove Nextcloud API and Doctrine
working-directory: ${{ inputs.server-path }}/apps/${{ inputs.app-name }}
Expand Down

0 comments on commit 5845e15

Please sign in to comment.