Merge pull request #113 from altf4arnold/dependabot/pip/django-5.0.11 #107
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 | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: master | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure SSH | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
SSH_HOST: ${{ secrets.SSH_HOST }} | |
SSH_USER: ${{ secrets.SSH_USER }} | |
run: | | |
mkdir -p ~/.ssh/ | |
echo "$SSH_PRIVATE_KEY" > ~/.ssh/github | |
chmod 600 ~/.ssh/github | |
cat >>~/.ssh/config <<END | |
Host target | |
HostName $SSH_HOST | |
User $SSH_USER | |
IdentityFile ~/.ssh/github | |
LogLevel ERROR | |
StrictHostKeyChecking no | |
END | |
- name: Run Deploy | |
run: | | |
ssh target "cd tldtest && docker-compose down && git pull origin master && docker-compose up --build -d" |