Skip to content

feat: monitoring for target host and guest machine from tekton task #92

feat: monitoring for target host and guest machine from tekton task

feat: monitoring for target host and guest machine from tekton task #92

Workflow file for this run

name: oci-build
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ main ]
jobs:
build-prmamp-e2e:
strategy:
matrix:
os: [windows, darwin]
arch: [amd64, arm64]
name: build-prmamp-e2e
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build image
shell: bash
run: OS=${{ matrix.os }} ARCH=${{ matrix.arch }} make oci-build
- name: Log in to quay.io Registry
uses: redhat-actions/podman-login@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_IO_USERNAME }}
password: ${{ secrets.QUAY_IO_PASSWORD }}
- name: Push image
shell: bash
run: OS=${{ matrix.os }} ARCH=${{ matrix.arch }} make oci-push