Skip to content

Set default ascii strategy to remove non matching characters so that … #12

Set default ascii strategy to remove non matching characters so that …

Set default ascii strategy to remove non matching characters so that … #12

Workflow file for this run

name: Publish Homoglyphs
env:
name: homoglyphs_fork
on:
push:
tags: v*
jobs:
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install CA certs
run: sudo apt-get install ca-certificates -y
- name: Get tag
id: tag
uses: dawidd6/action-get-tag@v1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: eifinger/setup-rye@v4
- name: Publish to PyPI
run: |
rye build
rye publish --yes
env:
FLIT_USERNAME: __token__
FLIT_PASSWORD: ${{ secrets.PYPI_API }}