forked from eclipse-bluechi/bluechi
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 839 Bytes
/
images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Container Images
on:
workflow_dispatch:
inputs:
image:
description: Name of the image to build and push to quay.io
required: true
type: choice
options:
- build-base
- integration-test-base
jobs:
build_container:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build manifest
run: |
./build-scripts/build-push-containers.sh ${{ inputs.image }}
- name: Push manifest o quay.io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ inputs.image }}
registry: quay.io/bluechi
username: bluechi+bluechi_bot
password: ${{ secrets.QUAY_BOT_API_TOKEN }}