build-tasks #67
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |