Skip to content

Commit

Permalink
Merge pull request #155 from basnijholt/remove-dist
Browse files Browse the repository at this point in the history
remove dist/ folder and tar.gz files
  • Loading branch information
basnijholt authored Sep 8, 2020
2 parents 95bf650 + 82060e1 commit 215af1d
Show file tree
Hide file tree
Showing 22 changed files with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Upload Python Package

on:
release:
types: [published]

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
Binary file removed dist/miflora-0.1.1.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.10.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.11.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.12.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.13.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.14.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.15.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.16.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.2.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.3.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.4.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.5.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.6.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.7.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.8.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.9.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.1.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.2.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.3.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.5.tar.gz
Binary file not shown.
Binary file removed dist/miflora-0.6.tar.gz
Binary file not shown.

0 comments on commit 215af1d

Please sign in to comment.