You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
573 B
32 lines
573 B
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: static-test
|
|
image: alpine/flake8
|
|
commands:
|
|
- python3 -m flake8 --ignore E501,W503
|
|
|
|
- name: build
|
|
image: python
|
|
commands:
|
|
- python3 -m pip install build
|
|
- python3 -m build alice-ci
|
|
|
|
- name: publish
|
|
image: python
|
|
environment:
|
|
TWINE_PASSWORD:
|
|
from_secret: pypi_username
|
|
TWINE_USERNAME:
|
|
from_secret: pypi_token
|
|
commands:
|
|
- python3 -m pip install twine
|
|
- python3 -m twine upload alice-ci/dist/*
|
|
when:
|
|
branch:
|
|
- master
|
|
event:
|
|
exclude:
|
|
- pull_request
|