Skip to content

Update openshift templates to depend on ghcr.io container registry image #4

Update openshift templates to depend on ghcr.io container registry image

Update openshift templates to depend on ghcr.io container registry image #4

Workflow file for this run

name: Pull Request Opened
env:
APP_NAME: clamav-mirror
on:
pull_request:
branches:
- master
types:
- opened
- reopened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build & Push
if: "! github.event.pull_request.head.repo.fork"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build & Push
uses: ./.github/actions/build-push-container
with:
context: ./docker
image_name: ${{ env.APP_NAME }}
github_username: ${{ github.repository_owner }}
github_token: ${{ secrets.GITHUB_TOKEN }}