Skip to content

Commit

Permalink
ci: Verify released binary version
Browse files Browse the repository at this point in the history
Signed-off-by: Arjun Raja Yogidas <[email protected]>
  • Loading branch information
coderbirju committed Sep 16, 2024
1 parent de604d7 commit 9cdb2eb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release-automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ jobs:
run: make licenses
- name: Create release binaries
run: make RELEASE_TAG=${{ env.RELEASE_TAG }} release
- name: Check release version
run: |
mkdir output
tar -xzf release/${{ env.DYNAMIC_BINARY_NAME }} -C ./output
BINARY_VERSION=$(./output/finch-daemon --version)
echo "release tag = ${{ env.RELEASE_TAG }}"
echo $BINARY_VERSION
- uses: actions/upload-artifact@v4
with:
name: artifacts
Expand Down

0 comments on commit 9cdb2eb

Please sign in to comment.