Skip to content

README fixes, add 0.1.6 whl #11

README fixes, add 0.1.6 whl

README fixes, add 0.1.6 whl #11

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Publish Tinta to PyPI
permissions:
contents: read
packages: write
id-token: write
on:
push:
branches:
- never
tags:
- "*"
# on:
# release:
# types: [published]
# workflow_dispatch:
# push:
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
# branches:
# - main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
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_API_TOKEN }}