Skip to content

Commit 749f2b0

Browse files
committed
Fix linting issues
Signed-off-by: Oliver Kautz <oliver.kautz@gonicus.de>
1 parent 078f6d0 commit 749f2b0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

playbooks/upload_assets.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
hosts: "all"
55
vars:
66
install_dir: "{{ ansible_user_dir }}/.local/bin"
7-
is_pr: True # Set to False for Runs after merge.
7+
is_pr: true # Set to False for Runs after merge.
88
registry_credentials:
99
OCI_REGISTRY: "registry.scs.community"
1010
OCI_REPOSITORY: "registry.scs.community/cluster-stacks/scs"
@@ -28,10 +28,10 @@
2828
line: "{{ item.key }}={{ item.value }}"
2929
loop: "{{registry_credentials | dict2items }}"
3030
- name: "Upload Preliminary Assets"
31-
ansible.builtin.cmd:
31+
ansible.builtin.command:
3232
cmd: "just --working-directory {{ zuul.project.src_dir}} --just-file {{ zuul.project.src_dir}}/justfile publish-test-release"
3333
when: is_pr
3434
- name: "Upload Release Assets"
35-
ansible.builtin.cmd:
35+
ansible.builtin.command:
3636
cmd: "just --yes --working-directory {{ zuul.project.src_dir}} --just-file {{ zuul.project.src_dir}}/justfile publish-release"
3737
when: not is_pr

0 commit comments

Comments
 (0)