Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/ci'
Browse files Browse the repository at this point in the history
  • Loading branch information
chadj2 committed Feb 26, 2024
2 parents b482da4 + 72691f2 commit 3741e6e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Distribution

on:
workflow_call:
workflow_dispatch:

jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"

- name: Install pypa/build
run: |
python3 -m pip install --upgrade pip
python3 -m pip install build
- name: Build a binary wheel and a source tarball
run: python3 -m build

- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

0 comments on commit 3741e6e

Please sign in to comment.