Thanks to visit codestin.com
Credit goes to github.com

Skip to content

🌐 v1.3.7 - Enterprise Storage Support with Network Share Compatibility #4

🌐 v1.3.7 - Enterprise Storage Support with Network Share Compatibility

🌐 v1.3.7 - Enterprise Storage Support with Network Share Compatibility #4

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}