We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d46c96e commit a7e8559Copy full SHA for a7e8559
1 file changed
.github/workflows/auto_package_and_release.yml
@@ -65,19 +65,19 @@ jobs:
65
python-version: '3.12'
66
67
- name: UPX Setup(Windows amd64)
68
- if: matrix.os == "windows-latest"
+ if: ${{ matrix.os == 'windows-latest' }}
69
run: |
70
mkdir upx
71
curl -o upx/upx.exe https://assets.ksable.top/github/upx/upx/v5.0.1/upx.exe
72
73
- name: UPX Setup(Linux amd64)
74
- if: matrix.os == "ubuntu-latest"
+ if: ${{ matrix.os == 'ubuntu-latest' }}
75
76
77
curl -o upx/upx https://assets.ksable.top/github/upx/upx/v5.0.1/linux-amd64/upx
78
79
- name: UPX Setup(Linux arm64)
80
- if: matrix.os == "ubuntu-24.04-arm"
+ if: ${{ matrix.os == 'ubuntu-24.04-arm' }}
81
82
83
curl -o upx/upx https://assets.ksable.top/github/upx/upx/v5.0.1/linux-arm64/upx
0 commit comments