From 174f01fe563b7c2d497cf5a32c04d004a205a3de Mon Sep 17 00:00:00 2001 From: sfeakes Date: Sat, 22 Nov 2025 14:55:15 -0600 Subject: [PATCH] Update release_workflow.yml --- .github/workflows/release_workflow.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index 66ac020..2bbde74 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -23,6 +23,15 @@ jobs: # Otherwise (workflow_dispatch), use the user-provided tag name. ref: ${{ github.event_name == 'push' && github.sha || github.event.inputs.tag_name }} + - name: Print Determined Tag Name + run: | + # Evaluate the same conditional expression used for the release action + TAG_NAME="${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}" + echo "---------------------------------" + echo "Workflow Event: ${{ github.event_name }}" + echo "Tag to be used for Release: $TAG_NAME" + echo "---------------------------------" + - name: Create release archive # This step correctly archives both resulting binaries from the workspace run: tar -czvf aqualinkd-release.tar.gz web/ release/ @@ -43,7 +52,7 @@ jobs: # Overwrite is necessary to attach assets to an existing release. overwrite: true - + # The files parameter should match the file you created in the previous step. files: aqualinkd-release.tar.gz env: