Skip to content

Commit

Permalink
Temporarily skip generating completions for aarch64-apple-darwin rele…
Browse files Browse the repository at this point in the history
…ase (#85)
  • Loading branch information
CosmicHorrorDev authored May 7, 2023
1 parent 5bf93dd commit 72dfb97
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,14 @@ jobs:
inlyne_bin="$staging/inlyne"
fi
"$inlyne_bin" --gen-completions bash > "$comp_out/inlyne.bash"
"$inlyne_bin" --gen-completions elvish > "$comp_out/inlyne.elv"
"$inlyne_bin" --gen-completions fish > "$comp_out/inlyne.fish"
"$inlyne_bin" --gen-completions powershell > "$comp_out/inlyne.ps1"
"$inlyne_bin" --gen-completions zsh > "$comp_out/_inlyne"
# Skip `aarch64-apple-darwin` for now since it's failing in CI
if [ "${{ matrix.target }}" != "aarch64-apple-darwin" ]; then
"$inlyne_bin" --gen-completions bash > "$comp_out/inlyne.bash"
"$inlyne_bin" --gen-completions elvish > "$comp_out/inlyne.elv"
"$inlyne_bin" --gen-completions fish > "$comp_out/inlyne.fish"
"$inlyne_bin" --gen-completions powershell > "$comp_out/inlyne.ps1"
"$inlyne_bin" --gen-completions zsh > "$comp_out/_inlyne"
fi
if [ "${{ matrix.os }}" = "windows-latest" ]; then
7z a "$staging.zip" "$staging"
Expand Down

0 comments on commit 72dfb97

Please sign in to comment.