File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,15 @@ jobs:
38
38
- name : Install dependencies
39
39
run : pipenv install --dev
40
40
41
+ - name : Checkout ansible-playbook-airflow (private)
42
+ uses : actions/checkout@v3
43
+ with :
44
+ repository : your-org/ansible-playbook-airflow
45
+ token : ${{ secrets.MY_PAT }}
46
+ path : ansible-playbook-airflow
47
+
41
48
- name : Run Ansible Airflow Playbook for Prod
42
49
run : |
43
- cd ..
44
- git clone --single-branch --branch main https://github.com/tulibraries/ansible-playbook-airflow.git
45
- cd ansible-playbook-airflow
46
- pipenv install
47
50
pipenv run ansible-galaxy install -r requirements.yml
48
51
cp .github/.vault ~/.vault;
49
52
chmod +x ~/.vault
Original file line number Diff line number Diff line change @@ -35,12 +35,15 @@ jobs:
35
35
- name : Install dependencies
36
36
run : pipenv install --dev
37
37
38
+ - name : Checkout ansible-playbook-airflow (private)
39
+ uses : actions/checkout@v3
40
+ with :
41
+ repository : your-org/ansible-playbook-airflow
42
+ token : ${{ secrets.MY_PAT }}
43
+ path : ansible-playbook-airflow
44
+
38
45
- name : Run Ansible Airflow Playbook for QA
39
46
run : |
40
- cd ..
41
- git clone --single-branch --branch qa https://github.com/tulibraries/ansible-playbook-airflow.git
42
- cd ansible-playbook-airflow
43
- pipenv install
44
47
pipenv run ansible-galaxy install -r requirements.yml
45
48
cp .github/.vault ~/.vault;
46
49
chmod +x ~/.vault
You can’t perform that action at this time.
0 commit comments