Skip to content

Commit

Permalink
cat
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienChampagnol committed Sep 26, 2023
1 parent 710168c commit 8678e6e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
python3 -m pip install --upgrade build
python3 -m build
- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload
- name: Build
run: |
python3 -m pip install twine
python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
cat pyproject.toml
python3 -m pip install --upgrade build
python3 -m build
# - name: Upload
# run: |
# python3 -m pip install twine
# python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}

0 comments on commit 8678e6e

Please sign in to comment.