Skip to content

Bump version: 0.9.4 → 0.9.5 #17

Bump version: 0.9.4 → 0.9.5

Bump version: 0.9.4 → 0.9.5 #17

Workflow file for this run

name: Publish Pypi
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
- name: Generate Changelog
run: |
VERSION=$(.github/hack/version.sh)
.github/hack/changelog.sh $VERSION > NEW-VERSION-CHANGELOG.md
- name: Publish
uses: softprops/action-gh-release@v1
with:
body_path: NEW-VERSION-CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}