Skip to content

Commit

Permalink
Merge pull request #88 from sphinx-contrib/trusted-publishing
Browse files Browse the repository at this point in the history
Add a deploy.yml that supports trusted publishing.
  • Loading branch information
ezio-melotti authored Oct 13, 2023
2 parents 529a4eb + 8c4a652 commit a9af369
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 7 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Deploy

on:
push:
branches: [main]
pull_request:
release:
types:
- published
workflow_dispatch:

permissions:
contents: read

jobs:
# Always build & lint package.
build-package:
name: Build & verify package
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: hynek/build-and-inspect-python-package@v1

# Upload to Test PyPI on every commit on main.
release-test-pypi:
name: Publish in-dev package to test.pypi.org
if: |
github.repository_owner == 'sphinx-contrib'
&& github.event_name == 'push'
&& github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: build-package

permissions:
id-token: write

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist

- name: Upload package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

# Upload to real PyPI on GitHub Releases.
release-pypi:
name: Publish released package to pypi.org
if: |
github.repository_owner == 'sphinx-contrib'
&& github.event.action == 'published'
runs-on: ubuntu-latest
needs: build-package

permissions:
id-token: write

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist

- name: Upload package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
16 changes: 10 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling",
]

[project]
name = "sphinx-lint"
Expand Down Expand Up @@ -33,10 +36,11 @@ repository = "https://github.com/sphinx-contrib/sphinx-lint"
[project.scripts]
sphinx-lint = "sphinxlint.__main__:main"

[tool.setuptools]
packages = ["sphinxlint"]
include-package-data = false
dynamic.version.attr = "sphinxlint.__version__"
[tool.hatch]
version.source = "vcs"

[tool.hatch.version.raw-options]
local_scheme = "no-local-version"

[tool.black]

Expand Down
4 changes: 3 additions & 1 deletion sphinxlint/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""Sphinx linter."""

__version__ = "0.6.8"
import importlib.metadata

from sphinxlint.sphinxlint import check_file, check_text

__version__ = importlib.metadata.version("sphinx_lint")

__all__ = ["check_text", "check_file"]

0 comments on commit a9af369

Please sign in to comment.