Deploy demo #21
This file contains hidden or 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
| name: Deploy demo | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| deploy-demo: | |
| name: Deploy demo | |
| runs-on: ubuntu-latest | |
| if: always() | |
| steps: | |
| - name: Deploy in EC2 | |
| env: | |
| BRANCH: ${{ format('origin/{0}', github.ref_name) }} | |
| PRIVATE_KEY: ${{ secrets.AWS_DEPLOY_KEY }} | |
| HOSTNAME : ${{ secrets.AWS_HOSTNAME }} | |
| USER_NAME : ${{ secrets.AWS_USER }} | |
| run: | | |
| echo "$PRIVATE_KEY" > private_key && chmod 600 private_key | |
| ssh -o StrictHostKeyChecking=no -i private_key ${USER_NAME}@${HOSTNAME} " | |
| cd /home/ubuntu/ && | |
| [ -d shopware ] || git clone https://github.com/Elastic-Suite/shopware-demo.git shopware && | |
| cd /home/ubuntu/shopware && | |
| [ -d plugins/GallyPlugin ] || git clone https://github.com/Elastic-Suite/gally-shopware-connector.git plugins/GallyPlugin && | |
| [ -d plugins/MagentoLumaSampleData ] || git clone https://github.com/Elastic-Suite/hopware-lumage-sample-data-plugin.git plugins/MagentoLumaSampleData && | |
| docker system prune -af && | |
| ([[ $(docker volume ls -q | awk '!/_/' | wc -l) -eq 0 ]] || docker volume rm $(docker volume ls -q | awk '!/_/' | tr '\n' ' ')) && | |
| docker compose down && | |
| git fetch --all && git reset --hard && git checkout ${{ env.BRANCH }} && | |
| cd /home/ubuntu/shopware/plugins/GallyPlugin && | |
| git fetch --all && git reset --hard && git checkout ${{ env.BRANCH }} && | |
| cd /home/ubuntu/shopware && | |
| docker compose -f compose.yml -f compose.prod.yml up -d --build | |
| docker compose -f compose.yml -f compose.prod.yml exec shopware bin/build-administration.sh | |
| docker compose -f compose.yml -f compose.prod.yml exec shopware bin/build-storefront.sh | |
| " |