Skip to content

Commit 8895495

Browse files
committed
fix(ci): use default app path in behat workflow
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent abfe571 commit 8895495

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/behat-sqlite.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6666
with:
6767
persist-credentials: false
68-
path: apps-extra/${{ env.APP_NAME }}
68+
path: apps/${{ env.APP_NAME }}
6969

7070
- name: Set up php 8.2
7171
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
@@ -77,7 +77,7 @@ jobs:
7777
ini-values: disable_functions=
7878

7979
- name: Install app dependencies
80-
working-directory: apps-extra/${{ env.APP_NAME }}
80+
working-directory: apps/${{ env.APP_NAME }}
8181
run: |
8282
composer remove nextcloud/ocp --dev --no-scripts
8383
composer install --no-dev
@@ -98,7 +98,7 @@ jobs:
9898
./occ config:system:set debug --value true --type boolean
9999
100100
- name: Run Behat
101-
working-directory: apps-extra/${{ env.APP_NAME }}/tests/integration
101+
working-directory: apps/${{ env.APP_NAME }}/tests/integration
102102
env:
103103
BEHAT_ROOT_DIR: ../../../../
104104
BEHAT_RUN_AS: runner
@@ -110,7 +110,7 @@ jobs:
110110
if: always()
111111
with:
112112
name: behat-results
113-
path: apps-extra/${{ env.APP_NAME }}/tests/integration/output/
113+
path: apps/${{ env.APP_NAME }}/tests/integration/output/
114114
retention-days: 30
115115

116116
- name: Print logs

0 commit comments

Comments
 (0)