forked from EC-CUBE/ec-cube
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51fdff8
commit 214b634
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,21 +53,21 @@ jobs: | |
bin/console doctrine:schema:create --env=dev | ||
bin/console eccube:fixtures:load --env=dev | ||
- name: Install Plugins | ||
env: | ||
APP_ENV: 'prod' | ||
DATABASE_URL: postgres://postgres:[email protected]:5432/eccube_db | ||
DATABASE_SERVER_VERSION: 14 | ||
run: | | ||
bin/console eccube:composer:require "ec-cube/recommend42" | ||
bin/console eccube:composer:require "ec-cube/coupon42" | ||
bin/console eccube:composer:require "ec-cube/mailmagazine42" | ||
bin/console eccube:composer:require "ec-cube/salesreport42" | ||
bin/console eccube:composer:require "ec-cube/relatedproduct42" | ||
bin/console eccube:composer:require "ec-cube/securitychecker42" | ||
bin/console eccube:composer:require "ec-cube/productreview42" | ||
bin/console eccube:composer:require "ec-cube/api42" | ||
bin/console eccube:composer:require "ec-cube/sitekit42" | ||
# - name: Install Plugins | ||
# env: | ||
# APP_ENV: 'prod' | ||
# DATABASE_URL: postgres://postgres:[email protected]:5432/eccube_db | ||
# DATABASE_SERVER_VERSION: 14 | ||
# run: | | ||
# bin/console eccube:composer:require "ec-cube/recommend42" | ||
# bin/console eccube:composer:require "ec-cube/coupon42" | ||
# bin/console eccube:composer:require "ec-cube/mailmagazine42" | ||
# bin/console eccube:composer:require "ec-cube/salesreport42" | ||
# bin/console eccube:composer:require "ec-cube/relatedproduct42" | ||
# bin/console eccube:composer:require "ec-cube/securitychecker42" | ||
# bin/console eccube:composer:require "ec-cube/productreview42" | ||
# bin/console eccube:composer:require "ec-cube/api42" | ||
# bin/console eccube:composer:require "ec-cube/sitekit42" | ||
|
||
- name: Pre Install Plugins | ||
env: | ||
|
@@ -93,7 +93,7 @@ jobs: | |
docker cp ../eccube.tar.gz eccube:/tmp/ | ||
docker exec -w /tmp eccube bash -c "rm -rf /var/www/html; tar xf /tmp/eccube.tar.gz -C /var/www; mv /var/www/ec-cube /var/www/html; chown -R www-data: /var/www/html" | ||
docker exec -u www-data eccube bin/console eccube:install -n | ||
docker exec -u www-data eccube bash -c 'for code in Api42 Coupon42 MailMagazine42 ProductReview42 Recommend42 RelatedProduct42 SalesReport42 Securitychecker42 SiteKit42; do bin/console eccube:plugin:enable --code $code; done' | ||
# docker exec -u www-data eccube bash -c 'for code in Api42 Coupon42 MailMagazine42 ProductReview42 Recommend42 RelatedProduct42 SalesReport42 Securitychecker42 SiteKit42; do bin/console eccube:plugin:enable --code $code; done' | ||
|
||
- name: setup-chromedriver | ||
uses: nanasess/setup-chromedriver@master | ||
|