Skip to content

Update ISSUE_TEMPLATE.md #5

Update ISSUE_TEMPLATE.md

Update ISSUE_TEMPLATE.md #5

Workflow file for this run

name: Publish Python Package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install latest version of build
run: pip install --upgrade build
- name: Build package
run: python -m build
- name: Install twine
run: pip install --upgrade twine
- name: Publish to PYPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.CALENDAR_WIDGET_TOKEN }}
run: twine upload --repository-url https://upload.pypi.org/legacy/ dist/* --skip-existing