Skip to content

Commit

Permalink
Merge pull request #20 from eadwinCode/publish_yaml_fix
Browse files Browse the repository at this point in the history
fix: Publish yaml
  • Loading branch information
eadwinCode authored Nov 19, 2024
2 parents 887d12b + 1ad8a9e commit 14aea43
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@ jobs:
- name: Install Flit
run: pip install flit
- name: Install Dependencies
run: flit install --symlink
run: make install
- name: Install build dependencies
run: pip install build
- name: Build distribution
run: python -m build
- name: Publish
env:
FLIT_USERNAME: ${{ secrets.FLIT_USERNAME }}
FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }}
run: flit publish
uses: pypa/gh-action-pypi-publish@v1.11.0
with:
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Deploy Documentation
run: make doc-deploy

0 comments on commit 14aea43

Please sign in to comment.