We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d8949d commit fe57e0dCopy full SHA for fe57e0d
.github/workflows/build.yml
@@ -106,6 +106,11 @@ jobs:
106
with:
107
enable-cache: true
108
109
+ - name: Install cargo-license
110
+ uses: taiki-e/install-action@v2
111
+ with:
112
+ tool: cargo-license
113
+
114
- name: Generate license file
115
run: uv run --no-project python ./dev/create_license.py
116
dev/create_license.py
@@ -22,11 +22,9 @@
22
import subprocess
23
from pathlib import Path
24
25
-subprocess.check_output(["cargo", "install", "cargo-license"])
26
data = subprocess.check_output(
27
[
28
- "cargo",
29
- "license",
+ "cargo-license",
30
"--avoid-build-deps",
31
"--avoid-dev-deps",
32
"--do-not-bundle",
0 commit comments