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 ac388b9 commit c271644Copy full SHA for c271644
1 file changed
.github/workflows/publish.yml
@@ -63,7 +63,8 @@ jobs:
63
- name: Update package with EA version
64
id: bump
65
run: |
66
- EA_VERSION="${{ steps.current-version.outputs.base-version }}-ea-${{ github.run_number }}"
+ SHORT_SHA=$(git rev-parse --short "${{ github.event.workflow_run.head_sha }}")
67
+ EA_VERSION="${{ steps.current-version.outputs.base-version }}-ea.${SHORT_SHA}"
68
npm version "$EA_VERSION" --no-git-tag-version
69
echo "version=$EA_VERSION" >> "$GITHUB_OUTPUT"
70
0 commit comments