From 984fd4cb3c4b722524fb6182bf236308e61b6688 Mon Sep 17 00:00:00 2001 From: rl544 <111494264+rl544@users.noreply.github.com> Date: Wed, 4 Mar 2026 15:27:12 +0900 Subject: [PATCH] Create rpms.yml --- .github/workflows/rpms.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/rpms.yml diff --git a/.github/workflows/rpms.yml b/.github/workflows/rpms.yml new file mode 100644 index 0000000..439f814 --- /dev/null +++ b/.github/workflows/rpms.yml @@ -0,0 +1,23 @@ +name: Download RHEL 10 CIFS RPMs + +on: + workflow_dispatch: + +jobs: + download-rpms: + runs-on: ubuntu-latest + steps: + - name: Download RPMs using RHEL 10 Container + run: | + # RHEL 10 기반 컨테이너 실행 및 패키지 다운로드 + docker run --rm -v ${{ github.workspace }}:/downloads ://registry.access.redhat.com bash -c " + dnf install -y 'dnf-command(download)' && \ + mkdir /downloads/cifs_rpms && \ + dnf download --resolve --alldeps --destdir=/downloads/cifs_rpms cifs-utils + " + - name: Upload RPMs + uses: actions/upload-artifact@v4 + with: + name: rhel10-cifs-rpms + path: cifs_rpms/ + retention-days: 1