Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2022-09-21 09:13:55 +0300
committerGitHub <noreply@github.com>2022-09-21 09:13:55 +0300
commitc0eab20c83cd2046545e01c880c1671d8453ca10 (patch)
tree5740c88c68a7e9f8dc53800572d7e4ea115efce9 /.github
parentea62e189c354c8c11997a283d1e0f403f0f93646 (diff)
Update action.yml
fix production mode Signed-off-by: René Gieling <github@dartcafe.de>
Diffstat (limited to '.github')
-rw-r--r--.github/actions/setup-composer/action.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/setup-composer/action.yml b/.github/actions/setup-composer/action.yml
index 24d5e237..91556067 100644
--- a/.github/actions/setup-composer/action.yml
+++ b/.github/actions/setup-composer/action.yml
@@ -55,11 +55,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
+ run: composer i -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 -o
+ run: composer i --no-dev -o
shell: bash