Skip to content

Commit

Permalink
[norelease] housekeeping workflows and manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
ex0dus-0x committed Sep 20, 2022
1 parent 2a81a52 commit 144d3f5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,19 @@ jobs:
pypi-pkg-upload:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Build Dist
run: |
python3 -m pip install wheel
python3 setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

![ci](https://github.com/ex0dus-0x/fuzzable/actions/workflows/main.yml/badge.svg)

[![PyPI version](https://badge.fury.io/py/fuzzable.svg)](https://badge.fury.io/py/fuzzable)

Framework for Automating _Fuzzable_ Target Discovery with Static Analysis

![example](/extras/cli.png "CLI Example")
Expand Down
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
site/
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ exclude = '''
| docs
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
| Dockerfile
)
'''

0 comments on commit 144d3f5

Please sign in to comment.