CI: make /tmp/releases world-readable (#13117)

This commit is contained in:
Max Gautier
2026-03-19 11:14:31 +00:00
committed by GitHub
parent 6ce0a1c18e
commit 6dad642f52

View File

@@ -50,6 +50,8 @@ cloudinit_config: |
partition: 'none'
mounts:
- ['/dev/disk/by-id/virtio-2825A83CBDC8A32D5E', '/tmp/releases']
runcmd:
- chmod 777 /tmp/releases
ignition_config:
ignition:
@@ -68,3 +70,9 @@ ignition_config:
format: ext4
path: /tmp/releases
wipeFilesystem: true
directories:
- path: /tmp/releases
# ignition require a integer, so using the octal notation is easier
# than noting it in decimal form
# yamllint disable-line rule:octal-values
mode: 0777