Skip to content

Publish Python 🐍 distribution πŸ“¦ to PyPI and TestPyPI #4

Publish Python 🐍 distribution πŸ“¦ to PyPI and TestPyPI

Publish Python 🐍 distribution πŸ“¦ to PyPI and TestPyPI #4

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
branch:
description: 'Name of the branch to build and release'
required: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10.8', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine cython numpy
- name: Build a binary wheel and a source tarball
run: |
python setup.py bdist_wheel sdist
- name: Rename wheel for manylinux compatibility (Ubuntu only)
if: runner.os == 'Linux'
run: |
for file in *.whl; do
if [[ $file == *linux* ]]; then
mv "$file" "${file/-linux/-manylinux1}"
fi
done
- name: Publish artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist/
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: dist
path: dist/
- name: Publish to GitHub Releases
uses: softprops/action-gh-release@v1
permissions:

Check failure on line 64 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / Build and Release

Invalid workflow file

The workflow is not valid. .github/workflows/cd.yml (Line: 64, Col: 7): Unexpected value 'permissions'
contents: write
with:
files: dist/*
tag_name: ${{ github.ref }}
body: ${{ github.event.pull_request.body }}
token: ${{ secrets.RELEASE_KEY }}