Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions jenkins/trigger/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ runs:
echo "${{ steps.cert-from-vault.outputs.ca_chain }}" >> cert.pem
echo "${{ steps.cert-from-vault.outputs.private_key }}" >> cert.pem
shell: bash
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install modules
shell: bash
run: |
pip install requests
- name: Run python script
id: python
run: python "${{ github.action_path }}/jenkins_job_trigger.py" cert.pem $SERVER $FOLDER $JOB "$PARAMS"
Expand Down
Loading