forked from data-prep-kit/data-prep-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 815 Bytes
/
Copy pathdeploy-transforms.yml
File metadata and controls
32 lines (29 loc) · 815 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
name: Build, Test, and upload Transform images to quay.io
on:
release:
types:
- published
workflow_dispatch:
jobs:
build-images:
name: Build and check images
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# for setuptools-scm
fetch-depth: 0
- name: Build Package for pypi
run: |
make -C transforms image test-image
publish-images:
name: Publish packages to quay.io
# disabled
if: false
runs-on: ubuntu-22.04
needs: build-images
steps:
- name: Push images to quay.io registry
run: |
make -C transforms publish