patch: remove nat values from plotter #14
Workflow file for this run
This file contains hidden or 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: release | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: [main] | |
| jobs: | |
| bump-version: | |
| if: github.event.pull_request.merged == true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout main branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Hatch | |
| run: pip install hatch twine | |
| - name: Install dependencies | |
| run: hatch env create dev | |
| - name: Determine bump level and bump version | |
| id: bump | |
| run: | | |
| TITLE="${{ github.event.pull_request.title }}" | |
| echo "PR Title: $TITLE" | |
| if [[ "$TITLE" == major:* ]]; then | |
| hatch version major | |
| echo "bump=true" >> $GITHUB_OUTPUT | |
| elif [[ "$TITLE" == minor:* ]]; then | |
| hatch version minor | |
| echo "bump=true" >> $GITHUB_OUTPUT | |
| elif [[ "$TITLE" == patch:* ]]; then | |
| hatch version patch | |
| echo "bump=true" >> $GITHUB_OUTPUT | |
| else | |
| echo "No version bump (chore or other)." | |
| echo "bump=false" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Commit and push version | |
| if: steps.bump.outputs.bump == 'true' | |
| run: | | |
| git config user.name "github-actions" | |
| git config user.email "[email protected]" | |
| git add src/Visualizer/__about__.py | |
| git commit -m "chore: bump version" | |
| git push | |
| env: | |
| GIT_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build wheel with Hatch | |
| if: steps.bump.outputs.bump == 'true' | |
| run: hatch build | |
| - name: Publish to PyPI | |
| if: steps.bump.outputs.bump == 'true' | |
| env: | |
| TWINE_USERNAME: __token__ | |
| TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
| run: twine upload dist/* | |
| # - name: Publish to Test PyPI | |
| # env: | |
| # TWINE_USERNAME: __token__ | |
| # TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }} | |
| # run: | | |
| # pip install twine | |
| # twine upload --repository-url https://test.pypi.org/legacy/ dist/* | |
| - name: Get new version | |
| if: steps.bump.outputs.bump == 'true' | |
| id: version | |
| run: | | |
| VERSION=$(grep '__version__' src/Visualizer/__about__.py | cut -d '"' -f2) | |
| echo "version=v$VERSION" >> $GITHUB_OUTPUT | |
| - name: Create Git Tag | |
| if: steps.bump.outputs.bump == 'true' | |
| run: | | |
| git tag ${{ steps.version.outputs.version }} | |
| git push origin ${{ steps.version.outputs.version }} | |
| # libdoc-deployment: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v4 | |
| # - name: Set up Python | |
| # uses: actions/setup-python@v5 | |
| # with: | |
| # python-version: '3.12' | |
| # - name: Install Hatch | |
| # run: pip install hatch | |
| # - name: Install dependencies | |
| # run: pip install hatch | |
| # - name: Generate libdoc page | |
| # run: | | |
| # mkdir -p docs | |
| # hatch run dev:docs | |
| # ls -la docs/ | |
| # - name: Commit and push docs | |
| # run: | | |
| # git config user.name "github-actions" | |
| # git config user.email "[email protected]" | |
| # git add docs/keyword_docs.html | |
| # git commit -m "chore: update libdoc HTML" | |
| # git push | |
| # - name: Deploy docs to GitHub Pages | |
| # uses: peaceiris/actions-gh-pages@v3 | |
| # with: | |
| # github_token: ${{ secrets.GITHUB_TOKEN }} | |
| # publish_dir: ./output |