v10.4.1-beta #275
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 will install Python dependencies, run tests and lint with a variety of Python versions | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: Build and Publish CLI Release | |
| on: | |
| release: | |
| types: | |
| - created | |
| jobs: | |
| build_for_pypi: | |
| permissions: | |
| id-token: write # This is required for requesting the JWT | |
| contents: read # This is required for actions/checkout | |
| uses: ./.github/workflows/build_for_pypi.yml | |
| with: | |
| publish: true | |
| secrets: inherit | |
| buildassets: | |
| name: Build packages | |
| uses: ./.github/workflows/build_assets.yml | |
| with: | |
| release: true | |
| secrets: inherit | |
| publish_to_pypi: | |
| needs: | |
| - build_for_pypi | |
| permissions: | |
| id-token: write # This is required for OIDC | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/codecov-cli | |
| steps: | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: dist/ | |
| pattern: cibw-* | |
| - name: Display and move artifacts | |
| run: | | |
| ls -alrt */*/* | |
| mv */*/*/* dist/ | |
| mv */*/* dist/ | |
| echo "Moved files" | |
| ls -alrt */* | |
| echo "Deleting empty directories" | |
| find . -empty -type d -delete | |
| ls -alrt */* | |
| - name: Publish package to PyPi | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| verbose: true | |
| publish_release: | |
| name: Publish release | |
| needs: [buildassets, publish_to_pypi] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: 'read' | |
| id-token: 'write' | |
| steps: | |
| - id: 'auth' | |
| name: 'Authenticate to Google Cloud' | |
| uses: 'google-github-actions/auth@v1.0.0' | |
| with: | |
| create_credentials_file: 'true' | |
| workload_identity_provider: ${{ secrets.CODECOV_GCP_WIDP }} | |
| service_account: ${{ secrets.CODECOV_GCP_WIDSA }} | |
| # Publish the release tag to a Pub/Sub topic | |
| - name: Publish a message to a Pub/Sub topic | |
| env: | |
| CLOUDSDK_CORE_PROJECT: ${{ secrets.GCLOUD_UPLOADER_PROJECT_ID }} | |
| run: | | |
| gcloud pubsub topics publish ${{ secrets.GCLOUD_UPLOADER_PUBSUB_TOPIC }} --message '{"release":"'"${{ github.ref_name }}"'", "latest":true}' |