Add forecast label file to repo (#90) #14
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 Blog to Ubuntu Server | |
on: | |
push: | |
branches: | |
- master | |
- ppe | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GHCR_TOKEN_OAP}} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
tags: ghcr.io/${{ github.repository_owner }}/oap_blog:latest | |
file: Blog/Dockerfile | |
- name: SSH into server and deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SERVER_HOST }} | |
username: ${{ secrets.SERVER_USERNAME }} | |
password: ${{ secrets.SERVER_PASSWORD }} | |
port: ${{ secrets.SSH_PORT}} | |
script: | | |
echo "${{ secrets.GHCR_TOKEN}}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin | |
if [ ${{ github.ref }} = 'refs/heads/master' ] | |
then | |
docker stop oap_blog_prod || true | |
docker rm oap_blog_prod || true | |
docker pull ghcr.io/${{ github.repository_owner }}/oap_blog:latest | |
docker run -d --name oap_blog_prod -p 83:80 ghcr.io/${{ github.repository_owner }}/oap_blog:latest | |
elif [ ${{ github.ref }} = 'refs/heads/ppe' ] | |
then | |
docker stop oap_blog_ppe || true | |
docker rm oap_blog_ppe || true | |
docker pull ghcr.io/${{ github.repository_owner }}/oap_blog:latest | |
docker run -d --name oap_blog_ppe -p 8083:80 ghcr.io/${{ github.repository_owner }}/oap_blog:latest | |
fi |