Browse Source

Drone CI initial commit

pull/8/head
Daniel Gyulai 3 years ago
parent
commit
50a562155b
  1. 32
      .drone.yml
  2. 2
      LICENSE

32
.drone.yml

@ -0,0 +1,32 @@
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

2
LICENSE

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) <year> <copyright holders> Copyright (c) 2022 Daniel Gyulai
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Loading…
Cancel
Save