From bf3ad4458468d089f324ae615d2be39ad5bcc24d Mon Sep 17 00:00:00 2001 From: Weny Xu Date: Fri, 14 Jun 2024 22:29:34 +0800 Subject: [PATCH] fix: fix release CI typo (#4147) * fix: ci typo * chore: use aws registry --- .github/actions/build-greptime-binary/action.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-greptime-binary/action.yml b/.github/actions/build-greptime-binary/action.yml index be76133a3820..eb6af046a825 100644 --- a/.github/actions/build-greptime-binary/action.yml +++ b/.github/actions/build-greptime-binary/action.yml @@ -44,8 +44,8 @@ runs: CARGO_PROFILE=${{ inputs.cargo-profile }} \ FEATURES=${{ inputs.features }} \ BASE_IMAGE=${{ inputs.base-image }} \ - IMAGE_NAMESPACE=${{ input.image-namespace }} \ - IMAGE_REGISTRY=${{ input.image-registry }} + IMAGE_NAMESPACE=${{ inputs.image-namespace }} \ + IMAGE_REGISTRY=${{ inputs.image-registry }} - name: Upload artifacts uses: ./.github/actions/upload-artifacts @@ -63,7 +63,9 @@ runs: shell: bash if: ${{ inputs.build-android-artifacts == 'true' }} run: | - cd ${{ inputs.working-dir }} && make strip-android-bin + cd ${{ inputs.working-dir }} && make strip-android-bin \ + IMAGE_NAMESPACE=${{ inputs.image-namespace }} \ + IMAGE_REGISTRY=${{ inputs.image-registry }} - name: Upload android artifacts uses: ./.github/actions/upload-artifacts