Skip to content

Commit

Permalink
fix tag selector
Browse files Browse the repository at this point in the history
  • Loading branch information
aneesh1 committed Sep 19, 2024
1 parent e6112fc commit 9323aa5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dd-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@ jobs:
with:
fetch-depth: 0
- name: Set relase version environment variable
run: echo RELEASE_VERSION=${GITHUB_REF#*} >> $GITHUB_ENV
run: echo RELEASE_VERSION=${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
env:
GITHUB_REF: ${{ github.ref }}
- name: Build etcd
run: GOOS=linux REPOSITORY=https://github.com/${{ env.GITHUB_REPOSITORY}}.git ./scripts/build-binary ${VERSION}
run: GOOS=linux REPOSITORY=https://github.com/${{ env.GITHUB_REPOSITORY}}.git ./scripts/build-binary ${{ env.RELEASE_VERSION }}
env:
VERSION: ${{ env.RELEASE_VERSION }}
GITHUB_REPOSITORY: ${{ github.repository }}
- name: Calculate checksums
id: calculate_checksums
Expand Down

0 comments on commit 9323aa5

Please sign in to comment.