Merge pull request #9323 from emqx/av-fix-env-reference
fix: env variable reference in upload-artifact@v3
This commit is contained in:
commit
95e7a03f01
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue