From 45e7cd6e56ed7a045ae62dc01ad2800eb41f375d Mon Sep 17 00:00:00 2001 From: rl544 <111494264+rl544@users.noreply.github.com> Date: Thu, 26 Mar 2026 07:36:41 +0900 Subject: [PATCH] =?UTF-8?q?xen-o.yml=20=EB=A7=8C=EB=93=A4=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/xen-o.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/xen-o.yml diff --git a/.github/workflows/xen-o.yml b/.github/workflows/xen-o.yml new file mode 100644 index 0000000..3eb256f --- /dev/null +++ b/.github/workflows/xen-o.yml @@ -0,0 +1,23 @@ +name: xen-o + +on: + workflow_dispatch: + +jobs: + download: + runs-on: ubuntu-latest + steps: + - name: Pull Images + run: | + docker pull ronivay/xen-orchestra:latest + + - name: Save Images to TAR + run: | + docker save ronivay/xen-orchestra:latest -o xo.tar + + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: xo + path: xo.tar + retention-days: 1