Skip to content

Commit

Permalink
Create publish.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ricklamers authored Dec 16, 2023
1 parent 75ad2ba commit 8e3e29b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish Python Package

on:
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine
- name: Run Make Publish
run: make publish

0 comments on commit 8e3e29b

Please sign in to comment.