Skip to content

Commit 2a62a6e

Browse files
committed
fix composer command
1 parent fcd86c2 commit 2a62a6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: npm ci
2525
- name: Install Composer dependencies
26-
run: composer install --prefer-stable --prefer-dist --no-interaction
26+
run: composer install --prefer-dist --no-interaction --no-progress
2727
- name: Build assets
2828
run: npm run build
2929
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: manual release
1+
name: Release
22

33
on:
44
workflow_dispatch:
55
inputs:
66
version:
7-
description: 'Version to release (X.X.X or vX.X.X)'
7+
description: 'Version to release (X.X.X)'
88
required: true
99

1010
permissions:
@@ -43,7 +43,7 @@ jobs:
4343
run: npm ci
4444

4545
- name: Install Composer dependencies
46-
run: composer install --prefer-stable --prefer-dist --no-interaction
46+
run: composer install --prefer-dist --no-interaction --no-progress
4747

4848
- name: Build assets
4949
run: npm run build

0 commit comments

Comments
 (0)