Update schema artifacts #43
Workflow file for this run
This file contains hidden or 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: Publish Python Package | |
| # Not currently used for this project. | |
| # on: | |
| # workflow_dispatch: | |
| # release: | |
| # types: [created] | |
| # jobs: | |
| # build-n-publish: | |
| # name: Build and publish Python 🐍 distributions 📦 to PyPI | |
| # runs-on: ubuntu-latest | |
| # environment: release | |
| # permissions: | |
| # id-token: write | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - name: Set up Python | |
| # uses: actions/setup-python@v5 | |
| # with: | |
| # python-version: 3.9 | |
| # cache: pip | |
| # cache-dependency-path: '**/pyproject.toml' | |
| # - name: Install uv | |
| # run: pip install uv | |
| # - name: Install dependencies | |
| # run: uv pip install -r pyproject.toml --system -e . | |
| # - name: Install build dependencies | |
| # run: uv pip install --system build hatchling | |
| # - name: Build source and wheel archives | |
| # run: python -m build | |
| # - name: Publish | |
| # uses: pypa/gh-action-pypi-publish@release/v1 |