Merge pull request #9492 from qzhuyan/dev/william/bump-ee-dashboard-e1.0.1-beta.7
bump ee dashboard e1.0.1 beta.7
This commit is contained in:
commit
0304db234c
|
@ -159,7 +159,7 @@ jobs:
|
||||||
|
|
||||||
- uses: docker/build-push-action@v3
|
- uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
push: ${{ needs.prepare.outputs.IS_EXACT_TAG }}
|
push: ${{ needs.prepare.outputs.IS_EXACT_TAG == 'true' || github.repository_owner != 'emqx' }}
|
||||||
pull: true
|
pull: true
|
||||||
no-cache: true
|
no-cache: true
|
||||||
platforms: linux/${{ matrix.arch[0] }}
|
platforms: linux/${{ matrix.arch[0] }}
|
||||||
|
@ -227,7 +227,7 @@ jobs:
|
||||||
|
|
||||||
- uses: docker/build-push-action@v3
|
- uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
push: ${{ needs.prepare.outputs.IS_EXACT_TAG }}
|
push: ${{ needs.prepare.outputs.IS_EXACT_TAG == 'true' || github.repository_owner != 'emqx' }}
|
||||||
pull: true
|
pull: true
|
||||||
no-cache: true
|
no-cache: true
|
||||||
platforms: linux/${{ matrix.arch[0] }}
|
platforms: linux/${{ matrix.arch[0] }}
|
||||||
|
@ -310,7 +310,7 @@ jobs:
|
||||||
docker-elixir-push-multi-arch-manifest:
|
docker-elixir-push-multi-arch-manifest:
|
||||||
# note, we only run on amd64
|
# note, we only run on amd64
|
||||||
# do not build enterprise elixir images for now
|
# do not build enterprise elixir images for now
|
||||||
if: needs.prepare.outputs.IS_EXACT_TAG && needs.prepare.outputs.BUILD_PROFILE == 'emqx'
|
if: needs.prepare.outputs.IS_EXACT_TAG == 'true' && needs.prepare.outputs.BUILD_PROFILE == 'emqx'
|
||||||
needs:
|
needs:
|
||||||
- prepare
|
- prepare
|
||||||
- docker-elixir
|
- docker-elixir
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ export EMQX_DEFAULT_RUNNER = debian:11-slim
|
||||||
export OTP_VSN ?= $(shell $(CURDIR)/scripts/get-otp-vsn.sh)
|
export OTP_VSN ?= $(shell $(CURDIR)/scripts/get-otp-vsn.sh)
|
||||||
export ELIXIR_VSN ?= $(shell $(CURDIR)/scripts/get-elixir-vsn.sh)
|
export ELIXIR_VSN ?= $(shell $(CURDIR)/scripts/get-elixir-vsn.sh)
|
||||||
export EMQX_DASHBOARD_VERSION ?= v1.1.2
|
export EMQX_DASHBOARD_VERSION ?= v1.1.2
|
||||||
export EMQX_EE_DASHBOARD_VERSION ?= e1.0.1-beta.5
|
export EMQX_EE_DASHBOARD_VERSION ?= e1.0.1-beta.7
|
||||||
export EMQX_REL_FORM ?= tgz
|
export EMQX_REL_FORM ?= tgz
|
||||||
export QUICER_DOWNLOAD_FROM_RELEASE = 1
|
export QUICER_DOWNLOAD_FROM_RELEASE = 1
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
|
|
Loading…
Reference in New Issue