-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from hnez/auto-pypi
CI: add automatic publication to pypi.org and test.pypi.org
- Loading branch information
Showing
4 changed files
with
71 additions
and
44 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Check and Publish | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
codespell: | ||
name: Codespell | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: make qa-codespell | ||
|
||
pytest: | ||
name: Python Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: make qa-pytest | ||
|
||
ruff: | ||
name: Python Format and Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: make qa-ruff | ||
|
||
build: | ||
name: Python Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# include tags and full history for setuptools_scm | ||
fetch-depth: 0 | ||
- run: make build | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist | ||
|
||
publish: | ||
name: Publish | ||
if: ${{ github.event_name == 'push' && vars.PUBLISH_PYPI == 'true' && (startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/master') }} | ||
runs-on: ubuntu-latest | ||
needs: | ||
- codespell | ||
- pytest | ||
- ruff | ||
- build | ||
permissions: | ||
id-token: write | ||
steps: | ||
- name: Download artifacts from build stage | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist/ | ||
- name: Publish distribution package to TestPyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
repository-url: https://test.pypi.org/legacy/ | ||
- name: Publish distribution package to PyPI | ||
if: ${{ startsWith(github.ref, 'refs/tags') }} | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
requires = ["setuptools", "setuptools_scm[toml]"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "usbsdmux" | ||
description = "Tool to control an USB-SD-Mux from the command line" | ||
version = "24.01.1" | ||
authors = [ | ||
{ name = "Chris Fiege", email = "[email protected]" }, | ||
] | ||
|
@@ -18,6 +17,7 @@ classifiers = [ | |
"Operating System :: Unix", | ||
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
dynamic = ["version"] # via setuptools_scm | ||
|
||
[project.optional-dependencies] | ||
mqtt = ["paho-mqtt"] | ||
|
@@ -37,6 +37,9 @@ packages = [ | |
] | ||
include-package-data = true | ||
|
||
[tool.setuptools_scm] | ||
local_scheme = "no-local-version" | ||
|
||
[tool.ruff] | ||
line-length = 119 | ||
exclude = [ | ||
|