1234567891011121314151617181920212223242526272829303132333435363738394041 |
- name: Build and Push API Image
- on:
- push:
- branches:
- - 'main'
- - 'deploy/dev'
- jobs:
- build-and-push:
- runs-on: ubuntu-latest
- if: github.event.pull_request.draft == false
- steps:
- - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
- uses: actions/checkout@v2
- with:
- persist-credentials: false
- - name: Login to Docker Hub
- uses: docker/login-action@v2
- with:
- username: ${{ secrets.DOCKERHUB_USER }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- - name: Build and push Docker image
- shell: bash
- env:
- DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
- DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
- run: |
- /bin/bash .github/workflows/build-api-image.sh
- - name: Deploy to server
- if: github.ref == 'refs/heads/deploy/dev'
- uses: appleboy/ssh-action@v0.1.8
- with:
- host: ${{ secrets.SSH_HOST }}
- username: ${{ secrets.SSH_USER }}
- key: ${{ secrets.SSH_PRIVATE_KEY }}
- script: |
- ${{ secrets.SSH_SCRIPT }}
|