rm selene opts #8
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
# This workflow will generate a distribution and upload it to PyPI | |
name: Publish Alpha Build | |
on: | |
push: | |
branches: | |
- dev | |
paths-ignore: | |
- 'ovos_config_assistant/version.py' | |
workflow_dispatch: | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Build Tools | |
run: | | |
python -m pip install build wheel | |
- name: Increment Version | |
run: | | |
VER=$(python setup.py --version) | |
python version_bump.py | |
- name: Push Version Change | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Increment Version | |
- name: Build Distribution Packages | |
run: | | |
python setup.py bdist_wheel | |
- name: Publish to Test PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{secrets.PYPI_TOKEN}} |