Skip to content

Commit bf37772

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

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

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

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

134+
- name: Print user
135+
run: |
136+
whoami
137+
134138
- name: Make sure dockerd is running and test Docker
135139
run: |
136140
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)