⬆️ Bump aiohttp from 3.9.1 to 3.9.4 #40
Workflow file for this run
This file contains 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: Publish to Twine by getting version from Github pull request description and using bumpver to bump version and publish | |
on: | |
pull_request: | |
types: [ closed ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: | | |
github.event.pull_request.merged == true && | |
github.event.pull_request.base.ref == 'main' | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: 'Checkout source code' | |
uses: 'actions/checkout@v2' | |
with: | |
persist-credentials: false | |
ref: ${{ github.ref }} | |
- name: Bump and Publisher Distribution to PyPi | |
uses: YousefEZ/auto-pypi@0.0.13 | |
with: | |
githubtoken: ${{ secrets.GITHUB_TOKEN }} | |
twinetoken: ${{ secrets.TWINE_USERNAME }} | |