forked from sepehrkrz/nwmurl
-
Notifications
You must be signed in to change notification settings - Fork 4
43 lines (36 loc) · 1.13 KB
/
python-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Publish nwmurl to PyPi
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
environment: production
steps:
- name: var APP_ID
run: echo " My App ID is ${{ vars.APP_KEY }}"
- name: SECRET API_KEY
run: echo " My secret ID is ${{ secrets.PYPI_API_TOKEN }}"
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Print Repository URL
run: |
REPO_URL="https://github.com/${{ github.repository }}"
echo "Repository URL: $REPO_URL"
- name: Install dependencies
run: pip install setuptools wheel
- name: List Secrets
run: |
echo "Available secrets:"
env
- name: Build and deploy package
run: |
python setup.py sdist bdist_wheel
pip install twine==4.0.2
echo "PYPI_API_TOKEN: ${{ secrets.SEPEHR }}" # Print the API token
twine upload -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/*