fix: gh actions mcp deploy #29
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
| # This workflow is based on the GH Actions docs on publishing python artifacts: | |
| # https://docs.github.com/en/actions/tutorials/build-and-test-code/python#publishing-to-package-registries | |
| name: "Deploy metric-config-parser" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'lib/metric-config-parser/pyproject.toml' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'lib/metric-config-parser/pyproject.toml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| changed: | |
| uses: ./.github/workflows/changed-files.yml | |
| with: | |
| path_filter: | | |
| lib/metric-config-parser/pyproject.toml | |
| check-version-change: | |
| runs-on: ubuntu-latest | |
| needs: changed | |
| outputs: | |
| proceed: ${{ steps.version_change.outputs.proceed }} | |
| if: needs.changed.outputs.any_changed == 'true' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - id: version_change | |
| name: Check for package version change in last commit before proceeding. | |
| run: | | |
| git --no-pager diff origin/main HEAD~1 | |
| if git diff origin/main HEAD~1 -- ./lib/metric-config-parser/pyproject.toml | grep '\+version' | |
| then | |
| echo "Found changes to package version dir, proceeding with deployment." | |
| echo "proceed=true" >> "GITHUB_OUTPUT" | |
| else | |
| echo "No changes in package version. Skipping metric-config-parser deployment." | |
| echo "proceed=false" >> "GITHUB_OUTPUT" | |
| fi | |
| build-metric-config-parser: | |
| runs-on: ubuntu-latest | |
| needs: check-version-change | |
| permissions: | |
| contents: read | |
| if: needs.check-version-change.outputs.proceed == 'true' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| cache: 'pip' | |
| - name: Install deployment tools | |
| working-directory: ./lib/metric-config-parser | |
| run: | | |
| python3 -m pip install --upgrade pip build setuptools wheel | |
| - name: Create the distribution files | |
| working-directory: ./lib/metric-config-parser | |
| run: | | |
| python3.10 -m build --sdist | |
| - name: Upload distribution | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: release-dist | |
| path: ./lib/metric-config-parser/dist | |
| deploy-metric-config-parser: | |
| runs-on: ubuntu-latest | |
| needs: build-metric-config-parser | |
| permissions: | |
| id-token: write | |
| contents: read | |
| environment: | |
| name: pypi | |
| steps: | |
| - name: Retrieve release distribution | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: release-dist | |
| path: dist/ | |
| # - name: Publish to PyPi | |
| # uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc | |
| - name: | |
| run: | | |
| echo "Skipping publish for testing" |