Adding caching steps; removing hvac removal for now.

This commit is contained in:
2025-01-17 21:30:34 -05:00
parent 675357c89e
commit 4a114d2ead
@@ -62,15 +62,6 @@ jobs:
${{ runner.os }}-ansible-
- name: Install Ansible Galaxy Collections
run: ansible-galaxy collection install -r ansible/collections/requirements.yml -p ansible/collections
- name: Cache Python Dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Python Dependencies
run: pip install -r requirements.txt
- name: Generate .env file for Docker Compose Dry Run
run: |
vault kv get -format=json rinoa-docker/env | jq -r '.data.data' | jq -r 'keys[] as $k | "\($k)='\''\(.[$k])'\''"' > .env