Upload Python Package #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload Python Package | |
on: | |
release: | |
types: [created] | |
jobs: | |
deploy-pypi: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: pip install build twine | |
- name: Build the package | |
run: python -m build | |
- name: Upload to PyPI | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: twine upload dist/* | |
deploy-homebrew: | |
needs: deploy-pypi | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract version | |
id: get_version | |
run: | | |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then | |
echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT | |
else | |
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | |
fi | |
- name: Checkout homebrew-tap | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.repository_owner }}/homebrew-tap | |
token: ${{ secrets.HOMEBREW_TAP_TOKEN }} | |
- name: Create Formula directory | |
run: mkdir -p Formula | |
- name: Update Formula | |
env: | |
VERSION: ${{ steps.get_version.outputs.VERSION }} | |
GH_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }} | |
run: | | |
# Get SHA256 of PyPI package | |
PACKAGE_NAME="${{ github.event.repository.name }}" | |
SHA256=$(curl -sL https://pypi.org/pypi/$PACKAGE_NAME/$VERSION/json | jq -r '.urls[0].digests.sha256') | |
# Update formula | |
cat > Formula/$PACKAGE_NAME.rb << EOF | |
class $(echo $PACKAGE_NAME | perl -pe 's/[-.]([a-z])/\U$1/g; s/^([a-z])/\U$1/') < Formula | |
include Language::Python::Virtualenv | |
desc "$(gh repo view --json description -q .description)" | |
homepage "https://github.com/${{ github.repository }}" | |
url "https://files.pythonhosted.org/packages/source/${PACKAGE_NAME:0:1}/$PACKAGE_NAME/$PACKAGE_NAME-#{version}.tar.gz" | |
sha256 "$SHA256" | |
depends_on "[email protected]" | |
def install | |
virtualenv_install_with_resources | |
end | |
test do | |
system bin/"$PACKAGE_NAME", "--version" | |
end | |
end | |
EOF | |
- name: Commit and push changes | |
run: | | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git add Formula/*.rb | |
git commit -m "Update formula to version ${{ steps.get_version.outputs.VERSION }}" || true | |
git push |