Merge pull request #9323 from emqx/av-fix-env-reference

fix: env variable reference in upload-artifact@v3
This commit is contained in:
Zaiming (Stone) Shi 2022-11-07 21:08:37 +01:00 committed by GitHub
commit 95e7a03f01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -144,8 +144,8 @@ jobs:
apple_developer_id_bundle_password: ${{ secrets.APPLE_DEVELOPER_ID_BUNDLE_PASSWORD }} apple_developer_id_bundle_password: ${{ secrets.APPLE_DEVELOPER_ID_BUNDLE_PASSWORD }}
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: ${EMQX_NAME}-${{ matrix.otp }} name: ${{ env.EMQX_NAME }}-${{ matrix.otp }}
path: _packages/${EMQX_NAME}/ path: _packages/${{ env.EMQX_NAME }}/
linux: linux:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04