From 90d0604bfb12b77c50f08bf4a38be364b1acc0cc Mon Sep 17 00:00:00 2001 From: John Dorman <427295+boostchicken@users.noreply.github.com> Date: Fri, 3 Dec 2021 04:23:30 -0800 Subject: [PATCH] Create podman-udmse.yml --- .github/workflows/podman-udmse.yml | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/podman-udmse.yml diff --git a/.github/workflows/podman-udmse.yml b/.github/workflows/podman-udmse.yml new file mode 100644 index 0000000..0e6f158 --- /dev/null +++ b/.github/workflows/podman-udmse.yml @@ -0,0 +1,34 @@ +name: UDPSE Podman + +on: + workflow_dispatch: + push: + paths: + - 'podman-update/build/Dockerfile.Se' + pull_requests: + paths: + - 'podman-update/build/Dockerfile.Se' + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build the Docker image + run: docker build --file podman-update/build/Dockerfile.Se --tag boostchicken:udm-podman podman-update/build/ + - name: Docker Extract + id: extract + uses: shrink/actions-docker-extract@v1 + with: + # Docker Image to extract files from + image: boostchicken:udm-podman + # Path (from root) to a file or directory within Image + path: tmp/release/podman-install.zip + - name: Upload Podman Install + uses: actions/upload-artifact@v2 + with: + path: ${{ steps.extract.outputs.destination }} + name: udmse-podman-install.zip