e768098d0e
Flake8 Lint / flake8 (push) Waiting to run
Publish Promptflow Doc / Build (push) Waiting to run
Publish Promptflow Doc / Deploy (push) Blocked by required conditions
Spell check CI / Spell_Check (push) Waiting to run
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
20 lines
509 B
YAML
20 lines
509 B
YAML
name: step_generate_configs
|
|
inputs:
|
|
targetFolder:
|
|
required: false
|
|
default: "."
|
|
type: string
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Generate the connections config file
|
|
working-directory: ${{ github.workspace }}
|
|
shell: pwsh
|
|
run: |
|
|
pip list
|
|
pip install azure-identity
|
|
pip install azure-keyvault
|
|
echo "Generating connection config file..."
|
|
python ./scripts/building/generate_connection_config.py `
|
|
--target_folder ${{ inputs.targetFolder }}
|