fix(desktop): stop overriding an operator's global RUST_LOG level #8025
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: Desktop Release Candidate | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| validate: | |
| name: Desktop Release Candidate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Validate immutable desktop candidate | |
| if: startsWith(github.event.pull_request.head.ref, 'version-bump/') | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| VERSION: ${{ github.event.pull_request.head.ref }} | |
| run: | | |
| VERSION="${VERSION#version-bump/}" | |
| scripts/desktop_release.py validate --candidate HEAD --version "$VERSION" --repo "$GITHUB_REPOSITORY" |