Skip to content

Commit 086a7cd

Browse files
committed
Fix stupidity
1 parent 5f00b50 commit 086a7cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
with:
2222
go-version: ${{ matrix.go-version }}
2323
- name: Install libgtk-3-dev
24-
if: ${{ startsWith(matrix.os, 'ubuntu') }}
24+
if: startsWith(matrix.platform, 'ubuntu')
2525
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev
2626
- name: Install UPX (Linux)
27-
if: ${{ startsWith(matrix.os, 'ubuntu') }}
27+
if: startsWith(matrix.platform, 'ubuntu')
2828
run: sudo apt-get update -y && sudo apt-get install -y upx-ucl
2929
- name: Install UPX (Windows)
30-
if: ${{ startsWith(matrix.os, 'windows') }}
30+
if: startsWith(matrix.platform, 'windows')
3131
run: choco install upx -y
3232
- name: Checkout repository
3333
uses: actions/[email protected]

0 commit comments

Comments
 (0)