Skip to content

Fix reply_to_peer wrongly be set to the target chat_id. #6

Fix reply_to_peer wrongly be set to the target chat_id.

Fix reply_to_peer wrongly be set to the target chat_id. #6

Workflow file for this run

name: PyPi package release
on:
push:
branches: [ Production ]
permissions: write-all
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Generate API
run: |
make venv
make api
- name: Build source and wheel distributions
run: |
python -m pip install --upgrade build twine
python -m build
twine check --strict dist/WPyrogram* 2>&1
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "Release-${{ github.ref }}-${{ github.sha }}"
release_name: Release ${{ github.ref }}-${{ github.sha }}
draft: false
prerelease: false
- name: Get Asset name
run: |
export PKG=$(ls dist/WPyrogram* | grep tar)
set -- $PKG
echo "name=$1" >> $GITHUB_ENV
- name: Upload Release Asset (sdist) to GitHub
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ env.name }}
asset_name: ${{ env.name }}
asset_content_type: application/zip