add refresh_api to jenkinsfile

This commit is contained in:
2026-04-18 16:14:22 -07:00
parent 280066436a
commit 67f3f8440b
12 changed files with 161 additions and 63 deletions

View File

@ -0,0 +1,16 @@
---
- name: Install base packages
when: false
win_chocolatey:
name:
- "{{ windows_desktop_packages_item }}"
state: present
loop: "{{ windows_desktop_packages }}"
loop_control:
loop_var: windows_desktop_packages_item
...