Skip to content

Commit a13cff5

Browse files
authoredJul 29, 2024··
fix some broken conditionals in pipelines (#610)
Signed-off-by: Moritz Wiesinger <moritz.wiesinger@dynatrace.com>
1 parent 34bc10d commit a13cff5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/base-ci-goreleaser.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
platforms: arm64,ppc64le,linux/arm/v7,s390x
4747

4848
- name: Setup wixl # Required to build MSI packages for Windows
49-
if: ${{ matrix.GOOS }} == 'windows' && (${{ matrix.GOARCH }} == '386' || ${{ matrix.GOARCH }} == 'amd64')
49+
if: ${{ matrix.GOOS == 'windows' && ( matrix.GOARCH == '386' || matrix.GOARCH == 'amd64') }}
5050
run: |
5151
sudo apt-get update
5252
sudo apt-get install -y wixl

‎.github/workflows/base-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
check-latest: true
5656

5757
- name: Setup wixl # Required to build MSI packages for Windows
58-
if: ${{ matrix.GOOS }} == 'windows' && (${{ matrix.GOARCH }} == '386' || ${{ matrix.GOARCH }} == 'amd64')
58+
if: ${{ matrix.GOOS == 'windows' && ( matrix.GOARCH == '386' || matrix.GOARCH == 'amd64') }}
5959
run: |
6060
sudo apt-get update
6161
sudo apt-get install -y wixl

0 commit comments

Comments
 (0)
Please sign in to comment.