now alice is basic worked

This commit is contained in:
long2ice
2020-05-15 10:45:40 +08:00
parent a79f5c1dc6
commit a99a06e563
14 changed files with 427 additions and 163 deletions

22
.github/workflows/pypi.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: pypi
on:
push:
paths:
- 'alice/__init__.py'
- '.github/workflows/pypi.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Build dists
run: |
python3 setup.py sdist
- name: Pypi Publish
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}