Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
ruff check .
black --check .
pip-audit
safety check

- name: ✅ Run tests & coverage
run: |
Expand Down Expand Up @@ -102,6 +101,22 @@ jobs:
dist/*.tar.gz
dist/*.whl
generate_release_notes: true
pypi:
name: 🐍 Publish to PyPI
runs-on: ubuntu-latest
needs: release
permissions:
id-token: write

steps:
- name: 📥 Download built artifacts
uses: actions/download-artifact@v4
with:
name: keynetra-release-artifacts
path: dist

- name: 🚀 Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

docker:
name: 🐳 Docker Multi-Platform
Expand Down Expand Up @@ -148,7 +163,7 @@ jobs:
with:
images: |
keynetra/keynetra
ghcr.io/${{ github.repository }}/keynetra
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=tag
type=sha,prefix={{branch}}-
Expand Down
5 changes: 0 additions & 5 deletions .safety-policy.yml

This file was deleted.

Loading