chore: change destination upload directory for private fork #95
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: Publish alloy crates | |
| permissions: {} | |
| on: | |
| pull_request: | |
| types: [closed] | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_BACKTRACE: full | |
| RUSTC_WRAPPER: "sccache" | |
| jobs: | |
| publish: | |
| name: Publish | |
| if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'changelog-release/') | |
| runs-on: depot-ubuntu-latest-4 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: mozilla-actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9 | |
| - name: Publish crates via sanitize pipeline | |
| run: ./scripts/publish-crates.sh --publish | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |