diff --git a/.DS_Store b/.DS_Store index 4bdcc58..fc125bf 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml new file mode 100644 index 0000000..9837448 --- /dev/null +++ b/.github/workflows/publish-pypi.yml @@ -0,0 +1,42 @@ +name: Publish to PyPI + +on: + release: + types: [published] + workflow_dispatch: + +jobs: + build-and-publish: + name: Build and publish Python distribution to PyPI + runs-on: ubuntu-latest + + # These permissions are required for PyPI Trusted Publishing (OIDC) + permissions: + id-token: write + contents: read + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + + - name: Install build dependencies + run: python -m pip install --upgrade pip build + + - name: Build package (sdist and wheel) + run: python -m build + + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + # Note: We are using Trusted Publishing (OIDC) which is recommended by PyPI. + # To use this, you must configure a pending publisher on PyPI for this GitHub repository. + # See: https://docs.pypi.org/trusted-publishers/ + + # If you prefer to use an API token instead, uncomment the line below + # and add a PYPI_API_TOKEN to your GitHub repository secrets. + # password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/fastforge/.DS_Store b/fastforge/.DS_Store index 6c1d973..18d1b5d 100644 Binary files a/fastforge/.DS_Store and b/fastforge/.DS_Store differ diff --git a/fastforge/templates/.DS_Store b/fastforge/templates/.DS_Store index 753ed68..cb5c473 100644 Binary files a/fastforge/templates/.DS_Store and b/fastforge/templates/.DS_Store differ