Skip to content

Update BloodHound CLI default password and version to 1.2.6 #63

Update BloodHound CLI default password and version to 1.2.6

Update BloodHound CLI default password and version to 1.2.6 #63

Workflow file for this run

on:
push:
branches:
- main
jobs:
release:
runs-on: [self-hosted, ubuntu]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Setup uv
uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- name: Sync dependencies
run: uv sync --all-extras --dev
- name: Run Ruff
run: uv run ruff check .
- name: Run Pylint
run: uv run pylint src/bloodhound_cli
- name: Run Pytest
run: uv run pytest
- name: Build
run: uv run python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}