Merge pull request #406 from bluewave-labs/develop #405
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: Deploy to Staging | |
on: | |
push: | |
branches: | |
- staging | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set up SSH | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
KNOWN_HOSTS: ${{ secrets.KNOWN_HOSTS }} | |
run: | | |
mkdir -p ~/.ssh | |
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
eval $(ssh-agent -s) | |
ssh-add ~/.ssh/id_rsa | |
echo "$KNOWN_HOSTS" > ~/.ssh/known_hosts | |
- name: Configure SSH for easier access | |
run: | | |
echo "Host staging-server" >> ~/.ssh/config | |
echo " HostName ${{ secrets.DO_IP_ADDRESS }}" >> ~/.ssh/config | |
echo " User ${{ secrets.DO_USERNAME }}" >> ~/.ssh/config | |
echo " IdentityFile ~/.ssh/id_rsa" >> ~/.ssh/config | |
echo " StrictHostKeyChecking no" >> ~/.ssh/config | |
- name: Deploy to DigitalOcean Droplet | |
run: | | |
ssh -o StrictHostKeyChecking=no -t staging-server << 'EOF' | |
set -e | |
cd ~/projects/bluewave-onboarding | |
git stash | |
git pull | |
git stash apply | |
docker compose down | |
docker compose build | |
docker compose up -d | |
EOF |