Skip to content

Commit

Permalink
ensure version-bump always writes something
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Feb 11, 2024
1 parent 912a54c commit 05a8493
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/stage-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ jobs:
install
- name: Bump Versions
run: pnpm run version-bump
# ensure all commits result in a change,
# esp for release that fail to build and need to be reinitiated
run: |
pnpm run version-bump && \
date > .changeset/staged-date.txt
- name: Sync Configs
run: pnpm run meta:update
Expand Down

0 comments on commit 05a8493

Please sign in to comment.