Merge pull request #615 from vitessio/list-all-versions #394
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: | |
- main | |
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.22.5 | |
- 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/arewefastyet | |
git reset --hard FETCH_HEAD | |
git clean -fd | |
git fetch origin main | |
git checkout FETCH_HEAD | |
docker compose -f docker-compose.prod.yml build | |
docker compose -f docker-compose.prod.yml up -d |