Skip to content

Build prometheus-redfish-exporter container image #1055

Build prometheus-redfish-exporter container image

Build prometheus-redfish-exporter container image #1055

---
name: Build prometheus-redfish-exporter container image
"on":
workflow_dispatch:
schedule:
- cron: "0 3 * * *"
push:
paths:
- .github/workflows/build-prometheus-redfish-exporter-container-image.yml
- prometheus-redfish-exporter/**
branches:
- main
pull_request:
paths:
- .github/workflows/build-prometheus-redfish-exporter-container-image.yml
- prometheus-redfish-exporter/**
jobs:
build-prometheus-redfish-exporter-container-image:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup docker
uses: docker/setup-buildx-action@v3
- name: Login to container registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
if: github.ref == 'refs/heads/main'
- name: Build container image
run: scripts/build.sh
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
IMAGE: prometheus-redfish-exporter
REPOSITORY: osism/prometheus-redfish-exporter
VERSION: ${{ matrix.version }}
- name: Push container image
run: |
scripts/push.sh
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
IMAGE: prometheus-redfish-exporter
REPOSITORY: osism/prometheus-redfish-exporter
VERSION: ${{ matrix.version }}
if: |
github.repository == 'osism/container-images' &&
github.ref == 'refs/heads/main'