We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d258d4 commit cf32397Copy full SHA for cf32397
1 file changed
.github/workflows/deploy.yml
@@ -176,6 +176,16 @@ jobs:
176
echo "MACAE_URL_API=https://${MACAE_URL_API}" >> $GITHUB_OUTPUT
177
echo "CONTAINER_APP=${CONTAINER_APP_NAME}" >> $GITHUB_OUTPUT
178
179
+ - name: Setup Python
180
+ uses: actions/setup-python@v5
181
+ with:
182
+ python-version: '3.11.9'
183
+
184
+ - name: Install Python Dependencies
185
+ run: |
186
+ python -m pip install --upgrade pip
187
+ pip install requests
188
189
- name: Run Post deployment scripts
190
run: |
191
set -e
0 commit comments