69 the user should be able to trigger a search query on the mdn via a… #53
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 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy bot to production | |
uses: appleboy/ssh-action@master | |
with: | |
host: '${{ secrets.SSH_HOST }}' | |
username: '${{ secrets.SSH_USERNAME }}' | |
key: '${{ secrets.SSH_KEY }}' | |
port: '${{ secrets.SSH_PORT }}' | |
script: | | |
cd ${{secrets.APP_PATH}} | |
git pull origin master | |
docker-compose up --build -d |