We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10c4e88 commit 16b1f16Copy full SHA for 16b1f16
action.yml
@@ -7,6 +7,9 @@ inputs:
7
python-version:
8
description: 'Python version to use'
9
default: '3.12'
10
+ provider:
11
+ description: 'Provider to use'
12
+ default: 'aws'
13
project-path:
14
description: 'Project path'
15
required: true
@@ -65,9 +68,9 @@ runs:
65
68
run: |
66
69
source /opt/strong-opx/bin/activate
67
70
if [ "${{ github.action_ref }}" = "master" ] && [ -z "${{ inputs.version }}" ]; then
- pip install strong-opx
71
+ pip install "strong-opx[${{ inputs.provider }}]"
72
else
- pip install "strong-opx==${{ steps.get-version.outputs.version }}"
73
+ pip install "strong-opx[${{ inputs.provider }}]==${{ steps.get-version.outputs.version }}"
74
fi
75
76
- name: register project
0 commit comments