Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadain committed Jun 28, 2024
1 parent b9ed0ef commit b9959e8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release

on:
push:
branches: [ tt/92/deploy-via-github-actions ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10
- name: Install pipenv, build dependencies
run: |
python -m pip install pipenv
pipenv install --dev
- name: Build source package
run: |
pipenv run python -m build --sdist
- name: Build wheels
run: |
pipenv run python -m cibuildwheel --output-dir dist
pipenv run python -m twine check dist/*
- name: Upload to PyPI
run: |
pipenv run python -m twine upload --repository testpypi dist/*

0 comments on commit b9959e8

Please sign in to comment.