Try out new Docker build for deploy #53
Workflow file for this run
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: | ||
- * | ||
jobs: | ||
deploy: | ||
if: ${{ github.repository_owner == 'vitessio' }} | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.20.6 | ||
- name: executing remote ssh commands using password | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
script: | | ||
cd $HOME/vitess-bot | ||
git reset --hard FETCH_HEAD | ||
git clean -fd | ||
git fetch origin better-deploy | ||
git checkout FETCH_HEAD | ||
docker compose -f docker-compose.yml build | ||
docker compose -f docker-compose.yml up -d |