xen-o.yml 만들기

This commit is contained in:
rl544
2026-03-26 07:36:41 +09:00
committed by GitHub
parent a3eb56edbc
commit 45e7cd6e56
+23
View File
@@ -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