diff --git a/.github/workflows/generate-integrations.yml b/.github/workflows/generate-integrations.yml index 4ed830a2cea8af..2581d9f8a7235e 100644 --- a/.github/workflows/generate-integrations.yml +++ b/.github/workflows/generate-integrations.yml @@ -38,7 +38,7 @@ jobs: sudo apt-get install python3-venv python3 -m venv ./virtualenv source ./virtualenv/bin/activate - pip install jsonschema referencing jinja2 ruamel.yaml + ./integrations/pip.sh - name: Generate Integrations id: generate run: | diff --git a/integrations/pip.sh b/integrations/pip.sh new file mode 100755 index 00000000000000..3f509307db6fed --- /dev/null +++ b/integrations/pip.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +exec pip install jsonschema referencing jinja2 ruamel.yaml