Skip to content

build-tasks

build-tasks #68

Workflow file for this run

name: build-tasks
on:
# this is meant to be run on an approved PR branch for convenience
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
environment: quay.io
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Log into container registry
run: podman login -u ${{ secrets.QUAY_BOTUSER }} -p ${{ secrets.QUAY_TOKEN }} quay.io
- name: Build tasks container
run: make tasks-container
- name: Push container to registry
run: make tasks-push