We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fb156c commit b35915cCopy full SHA for b35915c
2 files changed
.github/workflows/release.yml
@@ -28,8 +28,10 @@ jobs:
28
id: version
29
run: |
30
if [ "${{ github.event_name }}" == "release" ]; then
31
- VERSION=${GITHUB_REF#refs/tags/v}
32
- VERSION=${VERSION#refs/tags/}
+ # For release events, use the tag_name from the release event
+ TAG_NAME="${{ github.event.release.tag_name }}"
33
+ # Remove 'v' prefix if present
34
+ VERSION=${TAG_NAME#v}
35
else
36
VERSION="${{ github.event.inputs.version }}"
37
fi
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "sentienceapi",
3
- "version": "0.90.9",
+ "version": "0.90.10",
4
"description": "TypeScript SDK for Sentience AI Agent Browser Automation",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
0 commit comments