Skip to content
Open
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
35 changes: 35 additions & 0 deletions .github/workflows/pypi_publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish Python Package to PyPI

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/appknox/
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: pip
- name: Install Protoc
run: |
PROTOC_ZIP=protoc-3.13.0-linux-x86_64.zip && \
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.13.0/$PROTOC_ZIP && \
unzip -q $PROTOC_ZIP bin/protoc -d /usr/local &&
protoc --version
- name: Install dependencies
run: |
pip install setuptools wheel build
- name: Build
run: |
python setup.py build && python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
Loading