diff --git a/.gitea/workflows/build-release.yml b/.gitea/workflows/build-release.yml index 553d70e..2355bca 100644 --- a/.gitea/workflows/build-release.yml +++ b/.gitea/workflows/build-release.yml @@ -435,11 +435,11 @@ jobs: VERSION="${{ steps.version.outputs.version }}" GITEA_URL="https://git.command.vigilcyber.com" - echo "=== Creating Gitea Release for ${VERSION} ===" + echo "=== Creating Gitea Release for v${VERSION} ===" curl -s -X POST \ -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \ -H "Content-Type: application/json" \ - -d "{\"tag_name\": \"${VERSION}\", \"name\": \"Wraith ${VERSION}\", \"body\": \"Auto-release from CI build.\"}" \ + -d "{\"tag_name\": \"v${VERSION}\", \"name\": \"Wraith v${VERSION}\", \"body\": \"Auto-release from CI build.\"}" \ "${GITEA_URL}/api/v1/repos/vstockwell/wraith/releases" echo "" echo "Release created."