3.2.7 action
Some checks failed
/ build-push (push) Has been cancelled

This commit is contained in:
跨越晨昏 2024-11-01 19:24:47 +08:00
parent a9011eafa3
commit 8c9c9a9dda
2 changed files with 5 additions and 5 deletions

View File

@ -5,14 +5,14 @@ on:
jobs: jobs:
build-push: build-push:
runs-on: ubuntu runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Set up Python 3.11 - name: Set up Python 3.11
uses: actions/setup-python@v2 uses: actions/setup-python@v3
with: with:
python-version: '3.11' python-version: '3.11'
@ -26,7 +26,7 @@ jobs:
python3.11 setup.py sdist bdist_wheel python3.11 setup.py sdist bdist_wheel
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v3
with: with:
name: python-dist name: python-dist
path: | path: |

View File

@ -2,7 +2,7 @@ import setuptools
from CrossDown import Meta from CrossDown import Meta
meta = Meta(3, 2, 7) meta = Meta(3, 2, 8)
setuptools.setup( setuptools.setup(
name="CrossDown", name="CrossDown",