From ac2dd5e8e6bc0784f2732df1156bcba94257e1ab Mon Sep 17 00:00:00 2001 From: Noel Miller Date: Sat, 6 Apr 2024 15:49:08 -0500 Subject: [PATCH] chore(ci): install using apt since no longer using a container --- .github/workflows/build_iso.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_iso.yml b/.github/workflows/build_iso.yml index eb8c0d2446..a7a9cc4892 100644 --- a/.github/workflows/build_iso.yml +++ b/.github/workflows/build_iso.yml @@ -163,7 +163,8 @@ jobs: RCLONE_CONFIG_R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }} SOURCE_DIR: ${{ steps.upload-directory.outputs.iso-upload-dir }} run: | - dnf install -y rclone + sudo apt-get update + sudo apt-get install -y rclone rclone copy $SOURCE_DIR R2:bazzite - name: Upload ISOs to archive.org