We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40979c4 commit 4a8e625Copy full SHA for 4a8e625
action.yml
@@ -73,11 +73,13 @@ runs:
73
run: |
74
if [[ -z "${{ inputs.version }}" ]]; then
75
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"
77
else
78
VERSION="${{ inputs.version }}""
79
fi
80
if [[ -z "${{ inputs.project-url }}" ]]; then
81
PROJECT_URL="${{ github.server_url }}/${{ github.repository }}"
82
+ echo "Project URL not set. Using $PROJECT_URL"
83
84
PROJECT_URL="${{ inputs.project-url }}"
85
0 commit comments