github action을 활용하여 git push시에 자동으로 build & deploy가 되도록 사용할 수 있다.

github action을 활용하여 git push시에 자동으로 build & deploy가 되도록 사용할 수 있다.
|yaml|Github action workflow|docker image에서 pull하여 container를 생성하는 예제임. remote host에서 작동하는 사례임. 여기에서는 digitalocean 사이트에서 액션이 수행되도록설정된 사례
name: remote ssh commandon: [push]jobs:build:name: Buildruns-on: ubuntu-lateststeps:- name: executing remote ssh commands using passworduses: appleboy/ssh-action@masterwith:host: ${{ secrets.DIGITALOCEAN_HOST }}username: rootpassword: ${{ secrets.DIGITALOCEAN_PASSWORD }}port: 22script: |docker rm -f imctemplatecdocker rmi -f imctemplatedocker pull yknam/imctemplatedocker run --rm --network kong-net --name imctemplatec -p 9010:9010 -d yknam/imctemplate