Skip to content

Commit a7e8559

Browse files
committed
修复条件语句的格式
1 parent d46c96e commit a7e8559

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/auto_package_and_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,19 @@ jobs:
6565
python-version: '3.12'
6666

6767
- name: UPX Setup(Windows amd64)
68-
if: matrix.os == "windows-latest"
68+
if: ${{ matrix.os == 'windows-latest' }}
6969
run: |
7070
mkdir upx
7171
curl -o upx/upx.exe https://assets.ksable.top/github/upx/upx/v5.0.1/upx.exe
7272
7373
- name: UPX Setup(Linux amd64)
74-
if: matrix.os == "ubuntu-latest"
74+
if: ${{ matrix.os == 'ubuntu-latest' }}
7575
run: |
7676
mkdir upx
7777
curl -o upx/upx https://assets.ksable.top/github/upx/upx/v5.0.1/linux-amd64/upx
7878
7979
- name: UPX Setup(Linux arm64)
80-
if: matrix.os == "ubuntu-24.04-arm"
80+
if: ${{ matrix.os == 'ubuntu-24.04-arm' }}
8181
run: |
8282
mkdir upx
8383
curl -o upx/upx https://assets.ksable.top/github/upx/upx/v5.0.1/linux-arm64/upx

0 commit comments

Comments
 (0)