now alice is basic worked
This commit is contained in:
22
.github/workflows/pypi.yml
vendored
Normal file
22
.github/workflows/pypi.yml
vendored
Normal 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 }}
|
||||
Reference in New Issue
Block a user