Skip to content

Commit

Permalink
add workflow for creating wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian committed Jul 25, 2024
1 parent c398fc7 commit 110afb6
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build Wheels

on:
workflow_dispatch
# push:
# branches: [ master ]

env:
PYTHONUTF8: 1

jobs:
build:
name: Build Wheels
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"
- name: Install dependencies
run: |
poetry install
- name: Build wheels
run: |
poetry build
- name: List built wheels
run: ls dist/
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 110afb6

Please sign in to comment.