chore - update mcp_inspector_config.json to reflect the recent change… #21
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 on pypi' | |
| on: | |
| release: | |
| types: [created] | |
| push: | |
| branches: [main] | |
| jobs: | |
| publish: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/repo-stargazer | |
| permissions: | |
| contents: read | |
| packages: write | |
| attestations: write | |
| id-token: write | |
| steps: | |
| - name: Checkout (GitHub) | |
| uses: actions/checkout@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and run dev container task | |
| uses: devcontainers/[email protected] | |
| with: | |
| imageName: ghcr.io/ksachdeva/repo-star-gazer | |
| cacheFrom: ghcr.io/ksachdeva/repo-star-gazer | |
| runCmd: uv build | |
| - name: Publish package distributions to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| packages-dir: dist | |
| skip-existing: true | |
| verbose: true |