Skip to content

Commit

Permalink
Add the missing extract tag step for release vineyardctl CI (#1495)
Browse files Browse the repository at this point in the history
As titled. Fix the error while releasing v0.16.2

Signed-off-by: Ye Cao <[email protected]>
  • Loading branch information
dashanji authored Jul 28, 2023
1 parent 0d01e16 commit f65e18c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-vineyardd-and-wheels-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@ jobs:
with:
go-version: 1.19

- name: Extract tag name
id: tag
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'v6d-io/v6d' }}
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: Build vineyardctl
run: |
export arch="${{ matrix.platform }}"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-vineyardd-and-wheels-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,11 @@ jobs:
brew install coreutils || true
- name: Extract tag name
id: tag
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'v6d-io/v6d' }}
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: Build vineyardctl
run: |
export arch="${{ matrix.platform }}"
Expand Down

0 comments on commit f65e18c

Please sign in to comment.