feat(prometheus_exporter): simplify metric domain evaluation using co… #1
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
| on: | |
| push: | |
| branches: | |
| - "18.0" | |
| jobs: | |
| build: | |
| name: Build and Publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install | |
| run: ./task install | |
| - name: Build | |
| run: ./task build | |
| - name: Publish | |
| run: ./task publish | |
| env: | |
| PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} |