-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (32 loc) · 855 Bytes
/
docker_dev.yml
File metadata and controls
37 lines (32 loc) · 855 Bytes
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
name: Build and push dev images to ghcr.io and quay.io
on:
push:
branches:
- dev
paths:
- .github/workflows/docker_dev.yml
- .github/workflows/build_and_push_all_images.yml
- .github/workflows/build_e2xgrader_images.yml
- .github/workflows/build_image.yml
- images/**
jobs:
build_and_push_to_ghcr:
name: ghcr.io
uses: ./.github/workflows/build_and_push_all_images.yml
with:
force_build: false
push: true
registry: ghcr.io
tag: dev
e2xgrader_installation_source: pypi
secrets: inherit
build_and_push_to_quay:
name: quay.io
uses: ./.github/workflows/build_and_push_all_images.yml
with:
force_build: false
push: true
registry: quay.io
tag: dev
e2xgrader_installation_source: pypi
secrets: inherit