Skip to content

Commit

Permalink
Create github workflow to deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreGauthier committed Nov 21, 2023
1 parent 0a5218c commit d2dd24f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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 sylius ] || git clone https://github.com/Elastic-Suite/sylius-demo.git sylius &&
cd /home/ubuntu/sylius &&
docker system prune -af &&
([[ $(docker volume ls -q | awk '!/_/' | tr '\n' ' ' | 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 }} &&
docker compose -f docker-compose.yml -f docker-compose.inte.yml up -d --build
"

0 comments on commit d2dd24f

Please sign in to comment.