Skip to content

Commit

Permalink
add GH-Action to build wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
inancdokurel committed Sep 6, 2024
1 parent 9b315f8 commit e421e64
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-wheel.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build Wheel
on:
push:
tags:
- "v*.*.*"

jobs:
great-expectations-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 requirements.txt && pip install -r requirements-vertica.txt && pip install wheel
- name: Build python library
run: python setup.py bdist_wheel
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
dist/great_expectations-*.whl
requirements.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e421e64

Please sign in to comment.