diff --git a/.github/workflows/publish_test_build.yml b/.github/workflows/publish_test_build.yml deleted file mode 100644 index 955dc376..00000000 --- a/.github/workflows/publish_test_build.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will generate a distribution and upload it to PyPI - -name: Publish Alpha Build -on: - push: - branches: - - dev - paths-ignore: - - 'lingua_franca/version/__init__.py' - -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}} \ No newline at end of file