Skip to content
Merged
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
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
fi
echo "✅ Tag matches gemspec version."

- name: Verify gem manifest is up to date
run: |
make update-manifest
if ! git diff --quiet -- chargebee.gemspec; then
echo "❌ Gem manifest in chargebee.gemspec is out of date."
echo "Some files tracked in the repo are missing from (or stale in) s.files,"
echo "which means they would not be packaged into the released gem."
echo "Run 'make update-manifest' locally and commit the updated chargebee.gemspec."
echo "----- diff -----"
git --no-pager diff -- chargebee.gemspec
exit 1
fi
echo "✅ Gem manifest is up to date."

- name: Build gem
run: gem build chargebee.gemspec

Expand Down
Loading