diff --git a/.github/workflows/Release-Tag.yml b/.github/workflows/Release-Tag.yml new file mode 100644 index 0000000..6278c32 --- /dev/null +++ b/.github/workflows/Release-Tag.yml @@ -0,0 +1,23 @@ +name: Release Tag + +on: + push: + tags: + - master +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Get Version + run: echo "##[set-output name=version;]$(echo '${{ github.event.head_commit.message }}' | egrep -o '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}')" + id: extract_version_name + - name: Create Release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.extract_version_name.outputs.version }} + release_name: Release ${{ steps.extract_version_name.outputs.version }} + body: | + Release ${{ steps.extract_version_name.outputs.version }} \ No newline at end of file diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index a68c8d3..b236c68 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -24,5 +24,5 @@ jobs: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} run: | - python setup.py bdist_wheel - twine upload dist/*.whl + python setup.py bdist_wheel sdist + twine upload dist/*.whl dist/*.tar.gz