Update publish_to_pypi.yml

This commit is contained in:
Kevo 2022-02-26 11:36:48 +01:00 committed by GitHub
parent 349d5fc305
commit 14bcace970
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -7,14 +7,17 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['^3.10`]
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '^3.10'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
@ -35,4 +38,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}