From 97edcf3f996a3b71c5cd907d752dfff7f210c2d5 Mon Sep 17 00:00:00 2001 From: Celestia Ludenberg Date: Mon, 8 Jun 2026 15:22:08 +0000 Subject: [PATCH] fix: correct ia.ini s3 section format --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 43cb828..b963de9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: run: | pip install --break-system-packages internetarchive mkdir -p ~/.config/internetarchive - printf '[general]\naccess_key = %s\nsecret_key = %s\n' "$IA_ACCESS_KEY" "$IA_SECRET_KEY" > ~/.config/internetarchive/ia.ini + printf '[s3]\naccess = %s\nsecret = %s\n' "$IA_ACCESS_KEY" "$IA_SECRET_KEY" > ~/.config/internetarchive/ia.ini chmod 600 ~/.config/internetarchive/ia.ini ISO=$(ls out/*.iso | head -1) ia upload antergos-next "$ISO" \