아주 간단한 깃헙 액션
자동 배포하기
깃허브 액션 워크플로우를 통해 자동으로 도커 이미지를 빌드하고 컨테이너를 실행하는 형태의 자동 배포도 가능하다.
name: Deploy to Remote Server
on:
push:
branches:
- main
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Setup SS...
maximizemaxwell.com3 min read