diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml new file mode 100644 index 0000000..70888df --- /dev/null +++ b/.github/workflows/python-package.yml @@ -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