osc-sdk-python pip publishing #34
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: osc-sdk-python pip publishing | |
| on: | |
| release: | |
| types: [released] | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| environment: publish | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Setup toolchain | |
| uses: ./.github/actions/setup-test | |
| - name: Build & Push packages | |
| run: make upload-package | |
| env: | |
| UV_PUBLISH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |