Skip to content

Commit

Permalink
ci: fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
avestura committed Feb 7, 2024
1 parent cc2940f commit 9ebe059
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:

- name: Build Installer
uses: caphyon/advinst-github-action@v1.0
if: ${{ matrix.configuration }} == 'Release'
if: matrix.configuration == 'Release'
with:
advinst-version: '21.4'
# advinst-license: ${{ secrets.ADVINST_LICENSE_KEY }}
Expand All @@ -127,7 +127,7 @@ jobs:
SetVersion 0.0.0
- name: Publish setup artifact
if: ${{ matrix.configuration }} == 'Release'
if: matrix.configuration == 'Release'
uses: actions/upload-artifact@v2
with:
name: setup
Expand Down

0 comments on commit 9ebe059

Please # to comment.