Skip to content

Commit

Permalink
fix(ci): fix publish
Browse files Browse the repository at this point in the history
  • Loading branch information
jjyr committed Apr 24, 2023
1 parent 8905e01 commit 72debaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- name: Set PKG_NAME
run: echo "PKG_NAME=capsule_${RELEASE_VERSION}_${{ matrix.suffix }}" >> $GITHUB_ENV
- name: Build (static link openssl)
if: {{ matrix.suffix == 'x86_64-linux' }}
if: ${{ matrix.suffix == 'x86_64-linux' }}
run: cargo build --features=reqwest/native-tls-vendored --release --locked
- name: Build
if: {{ matrix.suffix != 'x86_64-linux' }}
if: ${{ matrix.suffix != 'x86_64-linux' }}
run: cargo build --release --locked
- name: Extract signing key
working-directory: dev-tools
Expand Down

0 comments on commit 72debaf

Please sign in to comment.