Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions .changeset/emotion-version.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@leafygreen-ui/emotion': patch
'@lg-tools/install': patch
---

Updates CI to ensure pre-build artifacts are committed after changeset version bump
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ jobs:
id: changesets
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm publish -r --no-git-checks
version: pnpm build; pnpm run version # Rebuild packages to ensure any uncommitted pre-build artifacts
publish: pnpm publish -r --no-git-checks # Use `pnpm publish` directly to resolve `workspace` dependencies
createGithubReleases: true
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:

- name: Install Dependencies
run: pnpm install --frozen-lockfile --prefer-offline

- uses: actions/cache/restore@v4
name: Restore build cache
id: build-cache
Expand Down
Loading