Skip to content

Commit

Permalink
Update pythonpublish.yml (#20)
Browse files Browse the repository at this point in the history
* Update pythonpublish.yml

* Update pythonpublish.yml

* Rename pythonpublish.yml to python-publish.yml
  • Loading branch information
gerard33 authored Aug 20, 2021
1 parent 0d86372 commit 857e3db
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/python-publish.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@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
31 changes: 0 additions & 31 deletions .github/workflows/pythonpublish.yml

This file was deleted.

0 comments on commit 857e3db

Please sign in to comment.