Delete requirements.txt #24
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
# Deploy latest main branch to droplet | |
name: Deploy to digitalOcean droplet | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: SSH Remote Commands | |
uses: appleboy/[email protected] | |
with: | |
host: ${{secrets.SSH_HOST}} | |
key: ${{secrets.SSH_KEY}} | |
username: ${{secrets.SSH_USERNAME}} | |
script: | | |
git clone [email protected]:GaryHo34/SeattleBot.git | |
export AUTH_TOKEN=${{secrets.AUTH_TOKEN}} | |
cd SeattleBot | |
docker compose up |