We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 224d386 commit 2e74a80Copy full SHA for 2e74a80
1 file changed
.github/workflows/build-release.yml
@@ -200,9 +200,12 @@ jobs:
200
# Get current timestamp in ISO format
201
TIMESTAMP=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
202
203
+ # Create assembly version format (matching update-version.sh)
204
+ ASSEMBLY_VERSION="${{ needs.build.outputs.version }}.0"
205
+
206
# Create new version entry
207
NEW_VERSION='{
- "version": "'${{ needs.build.outputs.version }}'",
208
+ "version": "'${ASSEMBLY_VERSION}'",
209
"changelog": "- See the full changelog at [GitHub]('${REPO_URL}'/releases/tag/'${VERSION}')\n",
210
"targetAbi": "10.10.0.0",
211
"sourceUrl": "'${DOWNLOAD_URL}'",
0 commit comments