Add github action to push docker images with latest tag. #1219
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Library | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "dev" | |
pull_request: | |
branches: | |
- "dev" | |
jobs: | |
build-python-lib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.11" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build data-processing-lib/python | |
run: | | |
make -C data-processing-lib/python DOCKER=docker venv build | |
build-ray-lib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.11" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build data-processing-lib/ray | |
run: | | |
make -C data-processing-lib/ray DOCKER=docker venv build | |
build-spark-lib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.11" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build data-processing-lib/spark | |
run: | | |
make -C data-processing-lib/spark DOCKER=docker venv build |