feat: architecture change date : price -> date,time : price #1
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: CI/CD for Airflow DAGs | |
on: | |
push: | |
paths: | |
- "airflow/dag.py" | |
branches: | |
- main # 원하는 브랜치로 설정 가능 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install rsync # rsync 설치 단계 추가 | |
run: sudo apt-get update && sudo apt-get install -y rsync | |
- name: Transfer DAG file to GCE | |
env: | |
GCE_IP: ${{ secrets.GCE_IP }} | |
GCE_USER: ${{ secrets.GCE_USER }} | |
GCE_SSH_PRIVATE_KEY: ${{ secrets.GCE_SSH_PRIVATE_KEY }} | |
run: | | |
mkdir -p ~/.ssh | |
echo "${GCE_SSH_PRIVATE_KEY}" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
rsync -avz -e "ssh -o StrictHostKeyChecking=no" ./airflow/dag.py ${GCE_USER}@${GCE_IP}:/home/patturning1/airflow/dags/dag.py | |