Skip to content

Commit 4a8e625

Browse files
committed
Update action.yml
1 parent 40979c4 commit 4a8e625

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,13 @@ runs:
7373
run: |
7474
if [[ -z "${{ inputs.version }}" ]]; then
7575
VERSION=$(curl --silent "https://api.github.com/repos/${{ github.repository }}/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
76+
echo "Latest version is $VERSION"
7677
else
7778
VERSION="${{ inputs.version }}""
7879
fi
7980
if [[ -z "${{ inputs.project-url }}" ]]; then
8081
PROJECT_URL="${{ github.server_url }}/${{ github.repository }}"
82+
echo "Project URL not set. Using $PROJECT_URL"
8183
else
8284
PROJECT_URL="${{ inputs.project-url }}"
8385
fi

0 commit comments

Comments
 (0)