updated port for new machine #34
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
name: Deployment Prod | |
on: | |
push: | |
branches: | |
- mainnet | |
jobs: | |
build-and-deploy: | |
name: Build and Deployment | |
runs-on: ubuntu-20.04 | |
permissions: | |
packages: write | |
contents: read | |
attestations: write | |
steps: | |
# Deploy to Server | |
- name: SSH & Deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.MAINNET_FRONTEND_HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.FRONTEND_SSH_KEY }} | |
script: | | |
#!/usr/bin/env bash | |
cd launchpad | |
sudo git checkout mainnet; | |
sudo git pull origin mainnet; | |
echo "Stopping and removing specific service: launchpad_mainnet" | |
sudo docker-compose stop launchpad_mainnet | |
sudo docker-compose rm -f launchpad_mainnet | |
echo "Removing dangling images" | |
sudo docker rmi $(sudo docker images -f "dangling=true" -q) || true | |
sudo docker build -t autlabs/launchpad:mainnet . --build-arg ENV_FILE=.env_prod | |
# sudo docker push autlabs/launchpad:mainnet | |
echo "Pulling the new image" | |
# sudo docker-compose pull launchpad_mainnet | |
docker-compose up -d --build launchpad_mainnet --remove-orphans | |
exit 0; |