Set up ISO/Disk image builds with S3 upload
mainThe build-disk.yml workflow uses bootc-image-builder to create installable disk images (ISO, qcow, raw). To enable automatic upload to an S3 bucket, add the following secrets to your GitHub repository (Settings -> Secrets and Variables -> Actions):
S3_PROVIDER: An rclone-compatible S3 provider name.S3_BUCKET_NAME: Your target bucket name.S3_ACCESS_KEY_ID: Your S3 access key.S3_SECRET_ACCESS_KEY: Your S3 secret key.S3_REGION: The bucket region (useautoif unknown).S3_ENDPOINT: The specific endpoint for your bucket.
Note: If you changed your image name from the default, you must also update IMAGE_REGISTRY, IMAGE_NAME, and DEFAULT_TAG in the .github/workflows/build-disk.yml file, and ensure disk_config/iso.toml points to your custom container image.