Skip to content

Commit

Permalink
packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
aodag committed Feb 23, 2021
1 parent dfd635f commit 8589df3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: python package
on:
push:
tags:
- '*'
jobs:
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: install nox
run: pip install nox
- name: run nox
run: nox -s pack
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: |
dist

0 comments on commit 8589df3

Please sign in to comment.