Update CI workflow

main
Andrew Cassidy 1 month ago
parent 47d4b595f8
commit 802633b9a7

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ] python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
click-version: [ "click~=7.0", "click~=8.0" ] click-version: [ "click~=7.0", "click~=8.0" ]
steps: steps:
@ -45,12 +45,12 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4.4.0 uses: actions/setup-python@v5.1.0
with: with:
python-version: '3.x' python-version: '>=3.8'
- name: Install dependencies - name: Install dependencies
run: | run: |
@ -75,7 +75,7 @@ jobs:
password: ${{ secrets.PYPI_API_TOKEN }} password: ${{ secrets.PYPI_API_TOKEN }}
- name: Publish to Github - name: Publish to Github
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v2
with: with:
files: dist/* files: dist/*
name: ${{ env.VERSION_TITLE }} name: ${{ env.VERSION_TITLE }}

Loading…
Cancel
Save