Skip to content

Commit

Permalink
Merge pull request CIROH-UA#24 from CIROH-UA/main
Browse files Browse the repository at this point in the history
Update python-publish.yml action v1 revert
  • Loading branch information
sepehrkrz authored Oct 29, 2023
2 parents e79772b + 47b493f commit 4b6407b
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,25 @@ on:
types:
- closed

permissions:
contents: read

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ 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: Install dependencies
run: pip install setuptools wheels

- name: Build and deploy package
run: |
python setup.py sdist bdist_wheel
pip install twine
twine upload -u '__token__' -p '${{ secrets.PYPI_API_TOKEN }}' dist/*

0 comments on commit 4b6407b

Please sign in to comment.