Skip to content

Commit de247ba

Browse files
pulpbotipanova
authored andcommitted
Update CI files
[noissue]
1 parent 3de35e6 commit de247ba

12 files changed

+231
-96
lines changed

.flake8

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# For more info visit https://github.com/pulp/plugin_template
77
[flake8]
88
exclude = ./docs/*,*/migrations/*,./pulpcore/app/protobuf/*
9-
109
per-file-ignores = */__init__.py: F401
1110

1211
ignore = E203,W503,Q000,Q003,D100,D104,D106,D200,D205,D400,D401,D402

.github/template_gitref

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2021.08.26-282-g53132bb
1+
unknown

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ jobs:
2929
- name: "Install python dependencies"
3030
run: |
3131
echo ::group::PYDEPS
32-
pip install packaging wheel
32+
pip install packaging twine wheel
3333
echo ::endgroup::
3434
- name: "Build package"
35-
run: "python3 setup.py sdist bdist_wheel --python-tag py3"
36-
- name: 'Upload Package whl'
35+
run: |
36+
python3 setup.py sdist bdist_wheel --python-tag py3
37+
twine check dist/*
38+
- name: "Upload Package whl"
3739
uses: "actions/upload-artifact@v3"
3840
with:
3941
name: "plugin_package"

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: "Install python dependencies"
8989
run: |
9090
echo ::group::PYDEPS
91-
pip install requests packaging~=21.3 mkdocs pymdown-extensions Jinja2<3.1
91+
pip install requests 'packaging~=21.3' mkdocs pymdown-extensions 'Jinja2<3.1'
9292
echo ::endgroup::
9393
9494
- name: "Set environment variables"

0 commit comments

Comments
 (0)