We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bd0e46e + 17adb8c commit ab9c312Copy full SHA for ab9c312
1 file changed
jenkins/trigger/action.yaml
@@ -51,6 +51,14 @@ runs:
51
echo "${{ steps.cert-from-vault.outputs.ca_chain }}" >> cert.pem
52
echo "${{ steps.cert-from-vault.outputs.private_key }}" >> cert.pem
53
shell: bash
54
+ - name: Setup python
55
+ uses: actions/setup-python@v6
56
+ with:
57
+ python-version: "3.12"
58
+ - name: Install modules
59
+ shell: bash
60
+ run: |
61
+ pip install requests
62
- name: Run python script
63
id: python
64
run: python "${{ github.action_path }}/jenkins_job_trigger.py" cert.pem $SERVER $FOLDER $JOB "$PARAMS"
0 commit comments