fix: recoginze optional link field's type annotation in the form of u… #262
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 project | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish_project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install flit | |
run: pip3 install flit | |
- name: publish project | |
env: | |
FLIT_USERNAME: __token__ | |
FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }} | |
run: flit publish |