update ci/cd #13
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: | |
- docker_creating | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: login dockerhub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker Node image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Docker/Node/Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKER_USERNAME }}/image-anki-node | |
- name: Build and push Docker Nginx image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Docker/Nginx/Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKER_USERNAME }}/image-anki-nginx | |
- name: Copy Docker-yml file and Dockerfiles | |
uses: appleboy/scp-action@v0.1.4 | |
with: | |
host: ${{ secrets.OPEN_PYCAB_HOST }} | |
username: root | |
password: ${{ secrets.OPEN_PYCAB_MACHINE_ROOT_PASSWORD }} | |
port: 22 | |
source: "production.yml,Docker" | |
target: /home/anki-cards | |
- name: Download Docker-yml file and run conrainers | |
uses: appleboy/ssh-action@v1.0.0 | |
with: | |
host: ${{ secrets.OPEN_PYCAB_HOST }} | |
username: root | |
password: ${{ secrets.OPEN_PYCAB_MACHINE_ROOT_PASSWORD }} | |
port: 22 | |
script: | | |
cd /home/anki-cards | |
docker compose -f production.yml pull | |
docker compose --env-file=.env -f production.yml up --build -d | |
docker image prune --force |