Skip to content

Commit 6ab0a66

Browse files
Fix Bug
Fix an issue with the current working directory for the version extraction, it was trying to extract a version from a directory that doesn't have that metadata.
1 parent 6930f29 commit 6ab0a66

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

‎.github/workflows/Build.yml‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ jobs:
8585
- name: Extract Project Version
8686
id: computedVersion
8787
background: true
88+
working-directory: ${{ matrix.specifications.sdkPath }}
8889
run: echo "version=$(npm pkg get version --workspaces=false | tr -d \")" >> "$GITHUB_OUTPUT"
8990

9091
# Set the experimental tag to indicate if it is an Alpha or Beta build
@@ -107,7 +108,7 @@ jobs:
107108
run: echo "shortSha=$(echo ${{ github.sha }} | head -c 7)" >> "$GITHUB_OUTPUT"
108109

109110
# Bring job back to sync execution by awaiting for all async jobs to finish before continuing
110-
- name: Steps - Convert Back To Synchronous Execution
111+
- name: Steps - Convert Back To Synchronous Execution - Metadata
111112
wait-all: true
112113

113114
# Update the NPM CLI to the latest available version

0 commit comments

Comments
 (0)