-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (35 loc) · 955 Bytes
/
build.yaml
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
35
36
37
38
39
40
name: CI build of all containers
on:
push:
branches:
- main
tags:
- "*"
pull_request:
jobs:
push:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build hinfo
uses: lsst-sqre/build-and-push-to-ghcr@v1
with:
image: ${{ github.repository }}-hinfo
github_token: ${{ secrets.GITHUB_TOKEN }}
dockerfile: Dockerfile.hinfo
- name: Build pqserver
uses: lsst-sqre/build-and-push-to-ghcr@v1
with:
image: ${{ github.repository }}-pq
github_token: ${{ secrets.GITHUB_TOKEN }}
dockerfile: Dockerfile.pqserver
- name: Build efdtransform
uses: lsst-sqre/build-and-push-to-ghcr@v1
with:
image: ${{ github.repository }}-efdtransform
github_token: ${{ secrets.GITHUB_TOKEN }}
dockerfile: Dockerfile.efdtransform