Improve Dockerize, Publish to PyPi Workflows

- fb86dea Create tagged Docker image on new tag/release
- 01fd98b Improve workflow to publish khoj to pypi
This commit is contained in:
Debanjum
2023-02-14 21:11:56 -06:00
committed by GitHub
4 changed files with 37 additions and 55 deletions

View File

@@ -1,7 +1,9 @@
name: build
name: dockerize
on:
push:
tags:
- "*"
branches:
- master
paths:
@@ -10,7 +12,7 @@ on:
- setup.py
- Dockerfile
- docker-compose.yml
- .github/workflows/build.yml
- .github/workflows/dockerize.yml
workflow_dispatch:
env:

View File

@@ -1,4 +1,4 @@
name: publish
name: pypi
on:
push:
@@ -9,21 +9,23 @@ on:
paths:
- src/khoj/**
- setup.py
- .github/workflows/publish.yml
- .github/workflows/pypi.yml
pull_request:
branches:
- 'master'
paths:
- src/khoj/**
- setup.py
- .github/workflows/publish.yml
- .github/workflows/pypi.yml
jobs:
publish:
name: Publish App to PyPI
name: Publish Python Package to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
@@ -39,61 +41,22 @@ jobs:
run: |
pip install --upgrade .
- name: Publish Release to PyPI
if: startsWith(github.ref, 'refs/tags')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_KEY }}
run: |
# Setup Environment for Reproducible Builds
export PYTHONHASHSEED=42
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
# Build PyPi Package
rm -rf dist
python -m build
# Validate PyPi Package
check-wheel-contents dist/*.whl
twine check dist/*
# Upload PyPi Package
twine upload --verbose dist/*
- name: Publish Master to PyPI
- name: 📝 Set Pre-Release Version for Master
if: github.ref == 'refs/heads/master'
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_KEY }}
run: |
# Set Pre-Release Version
sed -E -i "s/version=(.*)',/version=\1a$(date +%s)',/g" setup.py
# Setup Environment for Reproducible Builds
export PYTHONHASHSEED=42
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
# Build PyPi Package
rm -rf dist
python -m build
# Validate PyPi Package
check-wheel-contents dist/*.whl
twine check dist/*
# Upload PyPi Package
twine upload --verbose dist/*
- name: Publish Repo PR to Test PyPI
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
- name: 📝 Set Development Version for PR
if: github.event_name == 'pull_request'
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_KEY }}
PULL_REQUEST_NUMBER: ${{ github.event.number }}
run: |
# Set Development Release Version
sed -E -i "s/version=(.*)',/version=\1.dev$PULL_REQUEST_NUMBER$(date +%s)',/g" setup.py
- name: ⚙️ Build Python Package
run: |
# Setup Environment for Reproducible Builds
export PYTHONHASHSEED=42
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
@@ -102,9 +65,26 @@ jobs:
rm -rf dist
python -m build
- name: 👀 Validate Python Package
run: |
# Validate PyPi Package
check-wheel-contents dist/*.whl
twine check dist/*
# Upload PyPi Package
twine upload -r testpypi --verbose dist/*
- name: Upload Python Package Artifacts
- uses: actions/upload-artifact@v3
with:
path: dist/*
- name: 📦 Publish Python Package from Master or Release to PyPI
if: startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/master'
uses: pypa/gh-action-pypi-publish@release/v1.6.4
with:
password: ${{ secrets.PYPI_API_KEY }}
- name: 📦 Publish Python Package from Repo PR to Test PyPI
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
uses: pypa/gh-action-pypi-publish@release/v1.6.4
with:
password: ${{ secrets.PYPI_API_KEY }}
repository_url: https://test.pypi.org/legacy/

View File

@@ -1,7 +1,7 @@
# Khoj 🦅
[![build](https://github.com/debanjum/khoj/actions/workflows/build.yml/badge.svg)](https://github.com/debanjum/khoj/actions/workflows/build.yml)
[![test](https://github.com/debanjum/khoj/actions/workflows/test.yml/badge.svg)](https://github.com/debanjum/khoj/actions/workflows/test.yml)
[![publish](https://github.com/debanjum/khoj/actions/workflows/publish.yml/badge.svg)](https://github.com/debanjum/khoj/actions/workflows/publish.yml)
[![dockerize](https://github.com/debanjum/khoj/actions/workflows/dockerize.yml/badge.svg)](https://github.com/debanjum/khoj/pkgs/container/khoj)
[![pypi](https://github.com/debanjum/khoj/actions/workflows/pypi.yml/badge.svg)](https://pypi.org/project/khoj-assistant/)
*A natural language search engine for your personal notes, transactions and images*

View File

@@ -1,5 +1,5 @@
![](https://github.com/debanjum/khoj/actions/workflows/test.yml/badge.svg)
![](https://github.com/debanjum/khoj/actions/workflows/build.yml/badge.svg)
![](https://github.com/debanjum/khoj/actions/workflows/dockerize.yml/badge.svg)
# Khoj