Skip to content

Commit 0cdc2ac

Browse files
authored
Update main.yml
1 parent c0e0f25 commit 0cdc2ac

File tree

1 file changed

+8
-8
lines changed
  • tests/ci/release/packaging/ansible/roles/update_deb_repo/tasks

1 file changed

+8
-8
lines changed

tests/ci/release/packaging/ansible/roles/update_deb_repo/tasks/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
shell: "mv /home/runner/.cache/tmp/packages/{{ item }} {{ local_repo_path }}/{{ repo_prefix }}apt-repo/pool/main/{{ item }}"
33
loop: "{{ deb_pkg_names }}"
44

5+
- name: Check config
6+
shell: "ls -la {{ local_repo_path }}/apt-repo/pool/main/"
7+
register: debug
8+
9+
- name: Print config
10+
debug:
11+
msg: "{{ debug.stdout }}"
12+
513
- name: Copy library-bridge and obdc-bridge if version newer than 24.8
614
when: (pkgver | regex_replace('^(\\d+\\.\\d+).*$', '\\1')) is version('24.8', '==')
715
shell: "mv /home/runner/.cache/tmp/packages/{{ item }} {{ local_repo_path }}/{{ repo_prefix }}apt-repo/pool/main/{{ item }}"
@@ -59,14 +67,6 @@
5967
gpg -a --yes --output dists/{{ repo_deb_dist }}/Release.gpg --detach-sign dists/{{ repo_deb_dist }}/Release
6068
gpg -a --yes --clearsign --output dists/{{ repo_deb_dist }}/InRelease --detach-sign dists/{{ repo_deb_dist }}/Release
6169
62-
- name: Check build files
63-
shell: "ls -la {{ local_repo_path }}/{{ repo_prefix }}apt-repo/dists/{{ repo_deb_dist }}"
64-
register: debug
65-
66-
- name: Print build files
67-
debug:
68-
msg: "{{ debug.stdout }}"
69-
7070
- name: Get file info for contents of generated repo
7171
stat:
7272
path: "{{ local_repo_path }}/{{ repo_prefix }}apt-repo/dists/{{ repo_deb_dist }}/Contents-amd64"

0 commit comments

Comments
 (0)