Merge pull request #9594 from id/ci-consistent-syntax-for-variables-in-if-statements

ci: use consistent syntax for variables in if statements
This commit is contained in:
Zaiming (Stone) Shi 2022-12-22 10:20:13 +01:00 committed by GitHub
commit 552cabe792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -115,7 +115,7 @@ jobs:
steps:
- uses: emqx/self-hosted-cleanup-action@v1.0.3
if: matrix.os == macos-12-arm64
if: matrix.os == 'macos-12-arm64'
- uses: actions/download-artifact@v3
with:
name: source

View File

@ -124,7 +124,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: emqx/self-hosted-cleanup-action@v1.0.3
if: ${{ matrix.os == 'macos-12-arm64' }}
if: matrix.os == 'macos-12-arm64'
- uses: actions/checkout@v3
with:
fetch-depth: 0 # clone full git history

View File

@ -2,7 +2,7 @@
## Enhancements
- Added Amazon Linxu 2 (amzn2) package release [#9498](https://github.com/emqx/emqx/pull/9498).
- Added Amazon Linux 2 (amzn2) package release [#9498](https://github.com/emqx/emqx/pull/9498).
- Upgrade http client library `ehttpc` from `0.2.1` to `0.4.2` [#9456](https://github.com/emqx/emqx/pull/9456).