-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from eadwinCode/publish_yaml_fix
fix: Publish yaml
- Loading branch information
Showing
1 changed file
with
10 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
- name: Deploy Documentation | ||
run: make doc-deploy |