Skip to content

Commit

Permalink
Lets build this from github so that my local machine doesn't need to …
Browse files Browse the repository at this point in the history
…be in the loop anymore!
  • Loading branch information
Isaak-Malers committed Feb 28, 2024
1 parent b3bc306 commit b35e4d8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy to PyPI

on:
push:
branches:
- main

jobs:
deploy:
name: Deploy to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install build dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine
- name: Build and publish
run: |
python -m build

0 comments on commit b35e4d8

Please sign in to comment.