diff --git a/.github/actions/build-greptime-images/action.yml b/.github/actions/build-greptime-images/action.yml index ff565fc910..a84c690281 100644 --- a/.github/actions/build-greptime-images/action.yml +++ b/.github/actions/build-greptime-images/action.yml @@ -34,8 +34,8 @@ inputs: required: true push-latest-tag: description: Whether to push the latest tag - required: false - default: 'true' + required: true + default: 'false' runs: using: composite steps: diff --git a/.github/actions/build-images/action.yml b/.github/actions/build-images/action.yml index a315106cc3..5fd963b00b 100644 --- a/.github/actions/build-images/action.yml +++ b/.github/actions/build-images/action.yml @@ -22,8 +22,8 @@ inputs: required: true push-latest-tag: description: Whether to push the latest tag - required: false - default: 'true' + required: true + default: 'false' dev-mode: description: Enable dev mode, only build standard greptime required: false diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 58dde21e4c..b0b7f3fbe3 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -200,7 +200,7 @@ jobs: image-registry-username: ${{ secrets.DOCKERHUB_USERNAME }} image-registry-password: ${{ secrets.DOCKERHUB_TOKEN }} version: ${{ needs.allocate-runners.outputs.version }} - push-latest-tag: true + push-latest-tag: false - name: Set nightly build result id: set-nightly-build-result @@ -243,7 +243,7 @@ jobs: upload-to-s3: false dev-mode: false update-version-info: false # Don't update version info in S3. - push-latest-tag: true + push-latest-tag: false stop-linux-amd64-runner: # It's always run as the last job in the workflow to make sure that the runner is released. name: Stop linux-amd64 runner diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b6c95a603..81e034d257 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -317,6 +317,7 @@ jobs: image-registry-username: ${{ secrets.DOCKERHUB_USERNAME }} image-registry-password: ${{ secrets.DOCKERHUB_TOKEN }} version: ${{ needs.allocate-runners.outputs.version }} + push-latest-tag: true - name: Set build image result id: set-build-image-result