Skip to content
Snippets Groups Projects
Commit 50a56215 authored by gyulaid's avatar gyulaid
Browse files

Drone CI initial commit

parent 9e5cafb6
No related branches found
No related tags found
No related merge requests found
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
\ No newline at end of file
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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment