Skip to content

Commit 68a655b

Browse files
committed
build: fix release workflow syntax
1 parent 0d3ab56 commit 68a655b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
leading-dir: true
5959
tar: unix
6060
zip: windows
61-
dry_run: ! ${{ env.WORKFLOW_TEST }}
61+
dry_run: (! ${{ env.WORKFLOW_TEST }})
6262
- name: Make deb package
6363
if: ${{ matrix.build_deb }}
6464
run: scripts/make-debian-package --release ${{ matrix.target }}
@@ -74,7 +74,7 @@ jobs:
7474
name: qcp-deb-${{ matrix.target }}
7575
path: target/**/debian/qcp*.deb
7676
- name: Publish deb package to release
77-
if: ! ${{ env.WORKFLOW_TEST }}
77+
if: (! ${{ env.WORKFLOW_TEST }})
7878
env:
7979
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8080
run: gh release upload ${{ github.ref }} ${{ env.BUILT_DEB_FILE }}

0 commit comments

Comments
 (0)