[SKIP] Update build_and_test.yml to remove Py2 images. #45
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
--- | |
# yamllint disable rule:line-length | |
name: Bump_and_Package | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- master | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
if: "!startsWith(github.event.head_commit.message, '[SKIP]')" | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.x' | |
- name: Setup Git | |
run: | | |
git config user.name "JoaoRodrigues" | |
git config user.email '[email protected]' | |
git remote set-url origin \https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
git checkout "${GITHUB_REF:11}" | |
- name: Create skip flag | |
run: | | |
echo "SKIPBUMP=FALSE" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install bump2version setuptools wheel twine | |
- name: Bump Minor Version | |
run: | | |
bump2version minor | |
echo "SKIPBUMP=TRUE" >> $GITHUB_ENV | |
if: "startsWith(github.event.head_commit.message, '[FEATURE]')" | |
# Default action | |
- name: Bump Patch Version | |
run: | | |
bump2version patch | |
if: env.SKIPBUMP == 'FALSE' | |
# No major version change should go through automatically. | |
- name: Commit version change to master | |
run: | | |
git push --follow-tags | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
python setup.py sdist bdist_wheel | |
twine upload dist/* |