Merge pull request #119 from thanhdanh27600/staging #149
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
# This is a basic workflow to help you get started with Actions | |
name: CD | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [production] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Decrypt secret | |
run: ./scripts/decrypt_secret.sh .env.production.gpg | |
env: | |
SECRET_PASSPHRASE: ${{ secrets.SECRET_PASSPHRASE }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
build-args: | | |
"GEOLITE2_LICENSE_KEY=${{ secrets.GEOLITE2_LICENSE_KEY }}" | |
NEXT_PUBLIC_SHORT_DOMAIN=false | |
push: true | |
tags: ghcr.io/${{ github.repository }}:latest | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy using ssh | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
port: 22 | |
script: | | |
cd ~/clickdi | |
sh ./backup.sh | |
docker login -u ${{ github.repository_owner }} -p ${{ secrets.GITHUB_TOKEN }} | |
docker compose pull | |
docker compose down | |
docker compose up -d | |
docker system prune -f | |
sh ./migrate.sh | |
sh ./puppeteer.sh |