Skip to content

Commit

Permalink
enable debug logging for cargo dist
Browse files Browse the repository at this point in the history
  • Loading branch information
webern committed Sep 12, 2023
1 parent ae78fbf commit d4c92f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- id: create-release
run: |
export PATH=$CARGO_HOME/bin:$PATH
cargo dist plan --tag=${{ github.ref_name }} --output-format=json > dist-manifest.json
cargo dist plan --verbose=debug --tag=${{ github.ref_name }} --output-format=json > dist-manifest.json
echo "dist plan ran successfully"
cat dist-manifest.json
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
run: |
export PATH=$CARGO_HOME/bin:$PATH
# Actually do builds and make zips and whatnot
cargo dist build --tag=${{ github.ref_name }} --output-format=json ${{ matrix.dist-args }} > dist-manifest.json
cargo dist build --verbose=debug --tag=${{ github.ref_name }} --output-format=json ${{ matrix.dist-args }} > dist-manifest.json
echo "dist ran successfully"
cat dist-manifest.json
Expand Down

0 comments on commit d4c92f0

Please sign in to comment.