unifios-utilities/.github/workflows/podman-udmp-udmse.yml
2023-03-23 04:10:16 -07:00

53 lines
1.5 KiB
YAML

name: UDM-SE/PRO Podman
on:
workflow_dispatch:
push:
paths:
- 'podman-update/build/Dockerfile'
- 'podman-update/build/podman.Makefile.UDM-Pro-SE.patch'
pull_request:
paths:
- 'podman-update/build/Dockerfile'
- 'podman-update/build/podman.Makefile.UDM-Pro-SE.patch'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Cache
uses: actions/cache@v2.1.8
with:
# A list of files, directories, and wildcard patterns to cache and restore
path: ~/.cargo/
# An explicit key for restoring and saving the cache
key: rust
- 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-SE --tag boostchicken:udm-podman -v ~/.cargo/:~/.cargo podman-update/build/
- name: Docker Extract
id: extract
uses: boostchicken-dev/actions-docker-extract@v3
with:
# Docker Image to extract files from
image: boostchicken:udm-podman
# Path (from root) to a file or directory within Image
path: /tmp/install/.
- name: Generate new tag version
id: version
uses: flynshue/version-action@v0.0.1
- name: Upload Podman Install
uses: actions/upload-artifact@v3.1.2
with:
path: ${{ steps.extract.outputs.destination }}
name: podman-udmse-udmpro-${{ steps.version.outputs.version }}
retention-days: 90