Files
uv/.github/workflows/check-release.yml
T
Zsolt Dollenstein bf538b6824 Bump cargo-dist to 0.30.4 (#18158)
This PR was generated by:
1. bumping the version number in `dist-workspace.toml`
2. removing `dist.allow-dirty` in `dist-workspace.toml`
3. running `cargo dist generate`
4. adding back the `custom-publish-pypi` dependency for
`custom-publish-crates`
5. reverting step 2
2026-02-23 07:00:37 -06:00

25 lines
713 B
YAML

on:
workflow_call:
jobs:
dist-plan:
name: "dist plan"
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
submodules: recursive
- name: Install dist
shell: bash
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.4/cargo-dist-installer.sh | sh"
- name: Run dist plan
run: |
dist plan --output-format=json > plan-dist-manifest.json
echo "dist plan completed successfully"
cat plan-dist-manifest.json