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