[version] Bump ratarmount version to 0.15.0 #24
Workflow file for this run
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
name: Publish ratarmountcore to PyPI | |
on: | |
push: | |
tags: | |
- 'core-v*.*.*' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install setuptools wheel twine build | |
- name: Build and Publish | |
working-directory: core | |
env: | |
TWINE_PASSWORD: ${{ secrets.RATARMOUNTCORE_TWINE_PASSWORD }} | |
run: | | |
python3 -m build | |
twine check dist/* | |
twine upload --skip-existing -u __token__ dist/* |