-
Notifications
You must be signed in to change notification settings - Fork 0
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
0a5218c
commit d2dd24f
Showing
1 changed file
with
29 additions
and
0 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 |
---|---|---|
@@ -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 | ||
" |