Skip to content

e2e

e2e #117

Workflow file for this run

name: Promote Apps
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
IMAGE:
description: Flag indicating if regression should be skipped.
type: boolean
required: false
default: false
TAG:
description: APPS to promote.
required: false
jobs:
copy:
runs-on: ubuntu-24.04
steps:
- name: Build container
uses: ./.github/actions/build-publish-container
with:
app: 'test'
redhat-io-username: ${{ secrets.REGISTRY_REDHAT_IO_USER }}
redhat-io-password: ${{ secrets.REGISTRY_REDHAT_IO_PASSWORD }}
build-context: './'
container-file: './Dockerfile'
ghcr-token: ${{ secrets.GITHUB_TOKEN }}