Skip to content

Commit

Permalink
Merge pull request #1 from matmair/matmair-patch-1publishing
Browse files Browse the repository at this point in the history
Add publishing action
  • Loading branch information
matmair authored Aug 24, 2022
2 parents bde3121 + 52e5cbf commit 4d2b131
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release to pylint

on:
release:
types: [published]

env:
python_version: 3.8

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python ${{ env.python_version }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.python_version }}
- name: Install Python build dependencies
run: |
pip install --upgrade wheel setuptools twine build
- name: Build binary
run: |
python3 -m build
- name: Publish tp PyPi
run: python3 -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
TWINE_REPOSITORY: pypi
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
LDESC = ''

setup(name='brother_ql',
version = '0.9.dev0',
version = '1.0a0',
description = 'Python package to talk to Brother QL label printers',
long_description = LDESC,
author = 'Philipp Klaus',
author_email = '[email protected]',
url = 'https://github.com/pklaus/brother_ql',
url = 'https://github.com/pklaus/brother_ql-inventree',
license = 'GPL',
packages = ['brother_ql',
'brother_ql.backends'],
Expand Down

0 comments on commit 4d2b131

Please sign in to comment.