fix: remove 'v' prefix from version in synchronization workflow

Update the version retrieval command in the GitHub Actions workflow to strip the 'v' prefix from the version number in package.json. This change ensures that the version format is consistent for downstream processes.
This commit is contained in:
Mauricio Siu
2026-04-17 14:49:14 -06:00
parent 958372c5f9
commit 425fef6e28

View File

@@ -16,7 +16,7 @@ jobs:
- name: Get version - name: Get version
id: get_version id: get_version
run: | run: |
VERSION=$(jq -r .version apps/dokploy/package.json) VERSION=$(jq -r .version apps/dokploy/package.json | sed 's/^v//')
echo "version=$VERSION" >> $GITHUB_OUTPUT echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Version: $VERSION" echo "Version: $VERSION"