Skip to content

Commit c8e599c

Browse files
committed
Try to fix upload violation of protocol
1 parent 87b9ffa commit c8e599c

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,11 @@ jobs:
131131
with:
132132
path: src/kayobe-config
133133

134+
- name: Dump vars context
135+
env:
136+
VARS_JSON: ${{ toJSON(vars) }}
137+
run: echo "${VARS_JSON}"
138+
134139
- name: Make sure dockerd is running and test Docker
135140
run: |
136141
docker ps

etc/kayobe/ansible/pulp-artifact-upload.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@
1919
patterns: "{{ file_regex }}"
2020
register: found_files
2121

22+
- name: pip install packages
23+
ansible.builtin.pip:
24+
name:
25+
- pyopenssl
26+
- ndg-httpsclient
27+
- pyasn1
28+
- urllib3
29+
state: present
30+
2231
- name: Upload an artifact
2332
pulp.squeezer.artifact:
2433
pulp_url: "{{ remote_pulp_url }}"

0 commit comments

Comments
 (0)