File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -58,26 +58,29 @@ jobs:
5858 run : make RELEASE_TAG=${{ env.RELEASE_TAG }} release
5959 - name : Verify Release version
6060 run : |
61- echo "Calling "
61+ echo "Callinglin 1 "
6262 mkdir -p output/static output/dynamic
63+ echo "mkdir succesful"
6364 tar -xzf release/${{ env.DYNAMIC_BINARY_NAME }} -C ./output/dynamic
65+ echo "tar -xzf sucessful dynamic"
6466 tar -xzf release/${{ env.STATIC_BINARY_NAME }} -C ./output/static
67+ echo "tar -xzf sucessful static"
6568 DYNAMIC_BINARY_VERSION=$(./output/dynamic/finch-daemon --version | grep -oP '\d+\.\d+\.\d+')
69+ echo "Dynamic binary version: $DYNAMIC_BINARY_VERSION"
6670 STATIC_BINARY_VERSION=$(./output/static/finch-daemon --version | grep -oP '\d+\.\d+\.\d+')
71+ echo "Static binary version: $STATIC_BINARY_VERSION"
6772 export release_tag=${{ env.RELEASE_TAG }}
6873 export release_version=${release_tag/v/}
6974 echo "Release version: $release_version"
70- echo "Static binary version: $STATIC_BINARY_VERSION"
71- echo "Dynamic binary version: $DYNAMIC_BINARY_VERSION"
72-
75+
7376 echo "CUSTOM_RELEASE_VERSION=${release_version}" >> $GITHUB_ENV
7477 echo "CUSTOM_STATIC_BINARY_VERSION=${STATIC_BINARY_VERSION}" >> $GITHUB_ENV
7578 echo "CUSTOM_DYNAMIC_BINARY_VERSION=${DYNAMIC_BINARY_VERSION}" >> $GITHUB_ENV
7679 if ["$STATIC_BINARY_VERSION" != "$release_version"] || ["$DYNAMIC_BINARY_VERSION" != "$release_version"]; then
7780 echo "Version mismatch"
7881 exit 1
7982 fi
80- shell : bash
83+ shell : bash -x
8184 - uses : actions/upload-artifact@v4
8285 with :
8386 name : artifacts
You can’t perform that action at this time.
0 commit comments