Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/prod-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,15 @@ jobs:
- name: Install dependencies
run: pipenv install --dev

- name: Checkout ansible-playbook-airflow (private)
uses: actions/checkout@v3
with:
repository: your-org/ansible-playbook-airflow
token: ${{ secrets.MY_PAT }}
path: ansible-playbook-airflow

- name: Run Ansible Airflow Playbook for Prod
run: |
cd ..
git clone --single-branch --branch main https://github.com/tulibraries/ansible-playbook-airflow.git
cd ansible-playbook-airflow
pipenv install
pipenv run ansible-galaxy install -r requirements.yml
cp .github/.vault ~/.vault;
chmod +x ~/.vault
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/qa-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,15 @@ jobs:
- name: Install dependencies
run: pipenv install --dev

- name: Checkout ansible-playbook-airflow (private)
uses: actions/checkout@v3
with:
repository: your-org/ansible-playbook-airflow
token: ${{ secrets.MY_PAT }}
path: ansible-playbook-airflow

- name: Run Ansible Airflow Playbook for QA
run: |
cd ..
git clone --single-branch --branch qa https://github.com/tulibraries/ansible-playbook-airflow.git
cd ansible-playbook-airflow
pipenv install
pipenv run ansible-galaxy install -r requirements.yml
cp .github/.vault ~/.vault;
chmod +x ~/.vault
Expand Down