Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: removed git hash from snapshot versions
it breaks the resolution of dependencies-of-dependencies in downstream projects
e.g. for @talismn/web -> @talismn/balances-react -> @talismn/balances
@talismn/balances resolves to the version with a git hash beginning with
the lowest letter of the alphabet, rather than the most recently published
  • Loading branch information
alecdwm committed Jan 16, 2023
commit 85cc77b346c61cad18fa3455ae6563482aa7343f
2 changes: 1 addition & 1 deletion .github/workflows/publish-pr-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
node-version: 14
cache: yarn
- run: yarn --immutable
- run: yarn changeset version --snapshot pr${{ github.event.pull_request.number }}.$(git rev-parse --short HEAD)
- run: yarn changeset version --snapshot pr${{ github.event.pull_request.number }}
- run: yarn build:packages:prod
- run: yarn plugin import workspace-tools
- run: yarn workspaces foreach --verbose --no-private npm publish --tolerate-republish --tag pr${{ github.event.pull_request.number }}
Expand Down