Skip to content

Commit

Permalink
CI: attempt to fix canary release
Browse files Browse the repository at this point in the history
- see if underscore char was breaking lerna version command
  • Loading branch information
Roy Razon committed May 28, 2024
1 parent 9759742 commit 6b736b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
fi
# this will be the NPM dist-tag
GIT_ID=$(echo "${REF}" | sed 's/[^a-zA-Z0-9_-]/-/g')
GIT_ID=$(echo "${REF}" | sed 's/[^a-zA-Z0-9-]/-/g')
# run 'lerna version' to get next prerelease
yarn -s lerna version prerelease --no-git-tag-version --preid $GIT_ID --ignore-scripts --exact --yes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish-canary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
fi
# this will be the NPM dist-tag
GIT_ID=$(echo "${REF}" | sed 's/[^a-zA-Z0-9_-]/-/g')
GIT_ID=$(echo "${REF}" | sed 's/[^a-zA-Z0-9-]/-/g')
# run 'lerna version' to get next prerelease
yarn -s lerna version prerelease --no-git-tag-version --preid $GIT_ID --ignore-scripts --exact --yes
Expand Down

0 comments on commit 6b736b6

Please sign in to comment.