Have pod.Name display instead of pod.ID on start and stop reports #5058
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow only runs a build test to check for buildability issues before | |
# PR merge. No registry push occurs here. | |
name: Build FCOS image with podman-next | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
IMAGE_NAME: fcos | |
IMAGE_REGISTRY: quay.io/podman | |
COPR_OWNER: rhcontainerbot | |
COPR_PROJECT: podman-next | |
jobs: | |
fcos-podman-next-image-build-prepush-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Build FCOS Image | |
id: build_image_test | |
# Ref: https://github.com/redhat-actions/buildah-build | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: ${{ github.sha }} | |
containerfiles: ./contrib/podman-next/fcos-podmanimage/Containerfile |