Skip to content

Commit 319c56f

Browse files
committed
fix(gha): Stop forcing all GH Action runs to install-dist
This is convenient sometimes, but in the event the dist package should include things not generated by fontship or not available on the first pass, it makes it nearly impossible to build something with fontship, then do something else, then make the package.
1 parent 72bb07c commit 319c56f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/make/mod.rs

-6
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ pub fn run(target: Vec<String>) -> Result<()> {
4848
if is_glc {
4949
targets.push(String::from("_glc"));
5050
}
51-
if (is_gha || is_glc)
52-
&& targets.first().unwrap() != "debug"
53-
&& targets.first().unwrap() != ".gitignore"
54-
{
55-
targets.push(String::from("install-dist"));
56-
}
5751
let mut process = Exec::cmd("make")
5852
.args(&makeflags)
5953
.args(&makefiles)

0 commit comments

Comments
 (0)