Skip to content

Commit 6b9f51e

Browse files
author
Nikita Filonov
committed
prepare report
1 parent 009e1d8 commit 6b9f51e

File tree

7 files changed

+83
-15867
lines changed

7 files changed

+83
-15867
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Publish Python 🐍 distribution to PyPI
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: 3.12
19+
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install setuptools wheel twine
24+
25+
- name: Build distribution
26+
run: |
27+
python setup.py sdist bdist_wheel
28+
29+
- name: Publish to PyPI
30+
run: |
31+
python -m twine upload dist/* --repository-url https://upload.pypi.org/legacy/
32+
env:
33+
TWINE_USERNAME: __token__
34+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "submodules/ui-coverage-scenario-report"]
2+
path = submodules/ui-coverage-scenario-report
3+
url = https://github.com/Nikita-Filonov/ui-coverage-scenario-report
4+
tag = v0.1.0

0 commit comments

Comments
 (0)