Skip to content

Commit

Permalink
[github] CI initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
neg-serg committed Nov 7, 2023
1 parent ceeaf9d commit 866023c
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: negwm version bump
run-name: ${{ github.actor }} negwm version bumper
on: [push]
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11.5'
cache: 'pip'
- run: git config --global user.name 'Sergey Miroshnichenko'
- run: git config --global user.email 'serg.zorg@gmail.com'
- run: pip install hatch
- run: VERSION=`hatch version`
- run: hatch version release
- run: NEW_VERSION=`hatch version`
- run: git add negwm/__about__.py
- run: 'git commit -m "Bump version: $VERSION → $NEW_VERSION"'
- run: git tag $VERSION
- run: git push
- run: git push --tags
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11.5'
cache: 'pip'
- run: pip install hatch
- run: python -m build

# - name: pypi-publish
# if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main'
# uses: pypa/gh-action-pypi-publish@v1.1.0
# with:
# password: ${{ secrets.pypi_password }}

0 comments on commit 866023c

Please sign in to comment.