deployment pipeline
All checks were successful
/ test (push) Successful in 2s

This commit is contained in:
job 2024-05-30 16:52:41 +02:00
parent d5be0ef708
commit 7988ee970c

View file

@ -0,0 +1,11 @@
on: [push]
jobs:
test:
runs-on: docker
#container:
# image: debian:stable-slim
steps:
- uses: actions/checkout@v4
- run: echo "${{secrets.SSH_PRIV_KEY}}" > ./pub_key
- run: chmod 600 ./pub_key
- run: ssh -o StrictHostKeyChecking=no -i ./pub_key job@airflow.local "git -C ~/dags/airflow-dags/ pull"