revert back to spatial grid due to performance issues with quad tree #20
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 Production | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy using SSH | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.VPS_ADDRESS }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
script: | | |
cd survive-the-night-game | |
git pull | |
docker compose up -d --build |