File tree Expand file tree Collapse file tree 3 files changed +35
-2
lines changed
Expand file tree Collapse file tree 3 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Python Package
2+
3+ on :
4+ push :
5+ tags :
6+ - " v*"
7+
8+ jobs :
9+ publish :
10+ runs-on : ubuntu-latest
11+ defaults :
12+ run :
13+ working-directory : python
14+ steps :
15+ - uses : actions/checkout@v3
16+
17+ - name : Set up Python
18+ uses : actions/setup-python@v4
19+ with :
20+ python-version : " 3.13"
21+
22+ - name : Install build tools
23+ run : pip install build twine
24+
25+ - name : Build distribution
26+ run : python -m build
27+
28+ - name : Publish to PyPI
29+ env :
30+ TWINE_USERNAME : " __token__"
31+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
32+ run : |
33+ twine upload dist/*
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ A Python implementation of the DFF (Differential Fuzzing Framework) that uses Un
77### From PyPI (once published)
88
99``` bash
10- pip install dff
10+ pip install dff-py
1111```
1212
1313### From Source
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ requires = ["setuptools>=61.0"]
33build-backend = " setuptools.build_meta"
44
55[project ]
6- name = " dff"
6+ name = " dff-py "
77version = " 0.1.0"
88description = " A simple differential fuzzing framework"
99readme = " README.md"
You can’t perform that action at this time.
0 commit comments