File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -120,8 +120,6 @@ jobs:
120120 env :
121121 SQL : ${{ matrix.database }}
122122 SERVER_BRANCH : ${{ matrix.nextcloudVersion }}
123- NEXTCLOUD_AUTOINSTALL : " Yes"
124- NEXTCLOUD_AUTOINSTALL_APPS : " viewer activity groupfolders integration_openproject"
125123 NEXTCLOUD_TRUSTED_DOMAINS : nextcloud
126124 VIRTUAL_HOST : " nextcloud"
127125 WITH_REDIS : " YES"
@@ -234,6 +232,12 @@ jobs:
234232 make psalm
235233 make phpcs || ( echo 'Please run `make phpcs-fix` to format your code' && exit 1 )
236234
235+ - name : Enable Apps inside docker
236+ run : |
237+ docker exec nextcloud /bin/bash -c 'occ app:enable groupfolders integration_openproject activity'
238+ docker exec nextcloud /bin/bash -c 'occ app:enable -f user_oidc oidc'
239+ docker exec nextcloud /bin/bash -c 'occ app:list'
240+
237241 - name : Enable apps
238242 run : |
239243 mkdir -p server/apps/integration_openproject
You can’t perform that action at this time.
0 commit comments