From 35881720d9648711043f1ac036b8d3795beec627 Mon Sep 17 00:00:00 2001 From: John D <427295+boostchicken@users.noreply.github.com> Date: Thu, 26 Aug 2021 07:34:51 -0700 Subject: [PATCH] Create podman-udmp.yml --- .github/workflows/podman-udmp.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/podman-udmp.yml diff --git a/.github/workflows/podman-udmp.yml b/.github/workflows/podman-udmp.yml new file mode 100644 index 0000000..023643b --- /dev/null +++ b/.github/workflows/podman-udmp.yml @@ -0,0 +1,30 @@ +name: UDMP Podman + +on: + push: + paths: + - 'podman-update/build/Dockerfile' + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build the Docker image + run: docker build ./podman-update/build/ --file Dockerfile --tag boostchicken:udmp-podman-$(date +%s) + - name: Docker Extract + uses: shrink/actions-docker-extract@v1 + with: + # Docker Image to extract files from + image: boostchicken:udmp-podman-$(date +%s) + # Path (from root) to a file or directory within Image + path: /tmp/release/. + - name: Upload Podman Install + uses: actions/upload-artifact@v2 + with: + path: ${{ steps.extract.outputs.destination }} + name: podman-install.zip +