unifios-utilities/.github/workflows/podman-udmp.yml

33 lines
812 B
YAML
Raw Normal View History

2021-08-26 14:34:51 +00:00
name: UDMP Podman
on:
2021-08-26 14:36:14 +00:00
workflow_dispatch:
2021-08-26 14:34:51 +00:00
push:
paths:
- 'podman-update/build/Dockerfile'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
2021-08-27 04:56:12 +00:00
run: docker build --file podman-update/build/Dockerfile --tag boostchicken:udmp-podman podman-update/build/
2021-08-27 05:18:41 +00:00
- name: Docker Extract
id: extract
2021-08-26 14:34:51 +00:00
uses: shrink/actions-docker-extract@v1
with:
# Docker Image to extract files from
2021-08-27 04:56:12 +00:00
image: boostchicken:udmp-podman
2021-08-26 14:34:51 +00:00
# Path (from root) to a file or directory within Image
2021-08-27 05:20:01 +00:00
path: tmp/release/podman-install.zip
2021-08-26 14:34:51 +00:00
- name: Upload Podman Install
uses: actions/upload-artifact@v2
with:
path: ${{ steps.extract.outputs.destination }}
name: podman-install.zip