Skip to content

Add Docker Image Build workflow #1

Add Docker Image Build workflow

Add Docker Image Build workflow #1

Workflow file for this run

name: Docker Image Build
on:
push:
tags:
- 'v*.*.*'
jobs:
restful-services-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10.9'
- name: install dependencies
run: pip install -r requierements.txt
- name: Build python library
run: python setup.py bdist_wheel
- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/great_expectations-*.whl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}