mirror of
https://github.com/b4tman/sync_ics2gcal
synced 2024-11-10 23:36:52 +00:00
27 lines
639 B
YAML
27 lines
639 B
YAML
|
name: Upload Python Package
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [created]
|
||
|
|
||
|
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 setuptools_scm setuptools_scm_git_archive 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/*
|