This commit is contained in:
parent
d5be0ef708
commit
7988ee970c
11
.forgejo/workflows/deploy.yaml
Normal file
11
.forgejo/workflows/deploy.yaml
Normal 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"
|
Loading…
Reference in a new issue