Skip to content

Commit

Permalink
only build binary exe target
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Dec 30, 2023
1 parent 192622a commit 5e94f7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/binary-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ jobs:

- name: Build (openssl-vendored)
if: steps.is-openssl-vendored.outputs.enabled == 'true'
run: cargo build --release --target ${{ matrix.target }} --features openssl-vendored
run: cargo build --release --bin cpp-linter-cli --target ${{ matrix.target }} --features openssl-vendored
- name: Build (no openssl-vendored)
if: steps.is-openssl-vendored.outputs.enabled == 'false'
run: cargo build --release --target ${{ matrix.target }}
run: cargo build --release --bin cpp-linter-cli --target ${{ matrix.target }}

- name: Prepare artifacts [Windows]
shell: bash
Expand Down

0 comments on commit 5e94f7b

Please sign in to comment.