Skip to content

Commit

Permalink
update release action
Browse files Browse the repository at this point in the history
Signed-off-by: ryjiang <[email protected]>
  • Loading branch information
shanghaikid committed Nov 13, 2024
1 parent 27d7e1e commit 685a715
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,9 @@ jobs:
- name: Check out Git repository
uses: actions/checkout@v4

- name: Extract Major.Minor tag
id: extract_version
run: |
# Remove the leading 'v' and split the version into major.minor (e.g., v2.4.11 -> 2.4)
VERSION="${GITHUB_REF##*/}"
MAJOR_MINOR_TAG="$(echo $VERSION | cut -d. -f1,2)"
echo "MAJOR_MINOR_TAG=$MAJOR_MINOR_TAG" >> $GITHUB_ENV
- name: Extract Major.Minor tag (only for Docker job)
if: matrix.name == 'Docker Build'
uses: damienaicheh/[email protected]

- name: Install Node.js, NPM, and Yarn
uses: actions/setup-node@v4
Expand Down Expand Up @@ -75,7 +71,7 @@ jobs:
platforms: ${{ matrix.platform }}
tags: |
zilliz/attu:${{ github.ref_name }}
zilliz/attu:${{ env.MAJOR_MINOR_TAG }}
zilliz/attu:v${{ env.MAJOR_MINOR_TAG }}.${{ env.MINOR }}
cache-from: type=registry,ref=zilliz/attu:cache
cache-to: type=inline
build-args: |
Expand Down

0 comments on commit 685a715

Please sign in to comment.