chore: Updated workflow c2349cf1
Example User · 2025-07-11 12:37 3 file(s) · +3 −3
.github/workflows/release.yml +1 −1
192 192
      - id: cargo-dist
193 193
        shell: bash
194 194
        run: |
195 -
          dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json "--artifacts=global" > dist-manifest.json
195 +
          dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json --allow-dirty "--artifacts=global" > dist-manifest.json
196 196
          echo "dist ran successfully"
197 197
198 198
          # Parse out what we just built and upload it to scratch storage
Cargo.toml +0 −2
8 8
edition = "2024"
9 9
license = "MIT"
10 10
11 -
[workspace.metadata.dist]
12 -
allow-dirty = ["ci"]
13 11
14 12
[dependencies]
15 13
clap = { version = "4.4", features = ["derive"] }
dist-workspace.toml +2 −0
3 3
4 4
# Config for 'dist'
5 5
[dist]
6 +
# Skip checking whether the specified configuration files are up to date
7 +
allow-dirty = ["ci"]
6 8
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
7 9
cargo-dist-version = "0.28.0"
8 10
# CI backends to support