Move dependency handling for integrations to script. (#19185)
This will simplify handling across repositories.
Austin S. Hemmelgarn committed
Dec 11, 2024 at 09:35 UTC
8fa34d8c2585f01623d8897ed25d325cfb90b7fd
2 files changed
+4
-1
.github/workflows/generate-integrations.yml
+1
-1
@@ -38,7 +38,7 @@ jobs:
38
sudo apt-get install python3-venv
39
python3 -m venv ./virtualenv
40
source ./virtualenv/bin/activate
41
- pip install jsonschema referencing jinja2 ruamel.yaml
41
+ ./integrations/pip.sh
42
- name: Generate Integrations
43
id: generate
44
run: |
integrations/pip.sh
new
+3
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+
3
+exec pip install jsonschema referencing jinja2 ruamel.yaml