Set default ascii strategy to remove non matching characters so that … #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |