Hotfix for search incorrect redirect #37
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: | |
# Branch on which to automatically run the deploy-action. | |
# ┗━ Options: branch.name ━━ example: "main" | |
branches: main | |
jobs: | |
setup: | |
runs-on: self-hosted | |
steps: | |
- uses: appleboy/ssh-action@master | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USER }} | |
port: ${{ secrets.SSH_PORT }} | |
script: | | |
mkdir ~/env ~/env/${{github.event.repository.name}} | |
cd ~/env/${{github.event.repository.name}} | |
sudo git clone https://github.com/${{github.repository}} . | |
sudo git clean -f | |
sudo git checkout -f | |
sudo git pull | |
echo '${{ secrets.APP_ENV }}' > .env | |
sudo docker-compose pull | |
deploy: | |
needs: setup | |
runs-on: self-hosted | |
steps: | |
- uses: appleboy/ssh-action@master | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USER }} | |
port: ${{ secrets.SSH_PORT }} | |
script: | | |
cd ~/env/${{github.event.repository.name}} | |
sudo docker-compose down | |
sudo docker-compose up -d --remove-orphans |