Skip to content

Commit

Permalink
ci: Fix worflow syntax (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
Techassi authored Jan 3, 2024
1 parent d57492c commit 7828b1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr_stackablectl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ jobs:
run: cargo build --target ${{ matrix.target }} -p stackablectl

- name: Ensure shell completions up-to-date
if: matrix.os = 'x86_64-unknown-linux-gnu'
if: matrix.os == 'x86_64-unknown-linux-gnu'
run: |
cargo xtask gen-comp
git diff --exit-code
- name: Ensure man page is up-to-date
if: matrix.os = 'x86_64-unknown-linux-gnu'
if: matrix.os == 'x86_64-unknown-linux-gnu'
run: |
cargo xtask gen-man
git diff --exit-code

0 comments on commit 7828b1d

Please sign in to comment.