Skip to content

pgupgrade: Use remote migration from SCL images (PROJQUAY-5631) #588

pgupgrade: Use remote migration from SCL images (PROJQUAY-5631)

pgupgrade: Use remote migration from SCL images (PROJQUAY-5631) #588

Workflow file for this run

name: image
on:
pull_request_target:
branches:
- '*'
workflow_dispatch:
inputs:
tag:
description: 'Tag to attach to image'
required: true
jobs:
image:
name: image
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v2
- name: registry login
uses: docker/login-action@v1
with:
registry: quay.io
username: projectquay+quay_github
password: ${{ secrets.QUAY_TOKEN }}
- name: build image
id: push
uses: docker/build-push-action@v2
with:
push: true
context: ./
tags: quay.io/projectquay/quay-operator:${{ github.event.inputs.tag || github.event.number }}