unifios-utilities/.github/workflows/podman-udmp.yml
2022-11-26 17:39:03 -08:00

37 lines
994 B
YAML

name: UDM-Pro Podman
on:
workflow_dispatch:
push:
paths:
- 'podman-update/build/Dockerfile'
pull_request:
paths:
- 'podman-update/build/Dockerfile'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker Setup QEMU
uses: docker/setup-qemu-action@v2
- name: Build the Docker image
run: docker build --file podman-update/build/Dockerfile --build-arg UDM_PLATFORM=UDM-Pro --tag boostchicken:udmp-podman podman-update/build/
- name: Docker Extract
id: extract
uses: boostchicken-dev/actions-docker-extract@v2
with:
# Docker Image to extract files from
image: boostchicken:udmp-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: podman-install.zip