-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add github action for manual publishin (Testing)
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Publish Pypi | ||
|
||
# Manual activation | ||
on: [workflow_dispatch] | ||
|
||
jobs: | ||
# -- Publish a new Apio release | ||
publish: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
# -- Checkout the main branch | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: master | ||
|
||
# -- Install and and configure python | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.9" | ||
|
||
# -- Install all the dependencies needed | ||
- name: Install dependencies | ||
run: | | ||
make deps | ||
# -- Publish to Pypi!! | ||
- name: Publish to PyPi | ||
env: | ||
FLIT_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
make publish |