Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 788 Bytes

RELEASE.md

File metadata and controls

35 lines (28 loc) · 788 Bytes

Perform a release

git checkout -b release/vx.x.x

in docekr devcontainer:

bundle install
bundle clean --force

bundle exec bump patch --no-commit
# or
bundle exec bump minor --no-commit
# or
bundle exec bump major --no-commit

cd /workspace/spec/dummy
RAILS_ENV=test bundle exec rails db:setup
cd /workspace/
bundle exec rspec
cd /workspace/spec/dummy
RAILS_ENV=test bundle exec rails mermaid_erd
cp -f /workspace/spec/dummy/mermaid_erd/index.html /workspace/docs/example.html
chromium-browser --headless --disable-gpu --no-sandbox --window-size=1200,800 --hide-scrollbars --screenshot="/workspace/docs/screen_shot.png" /workspace/spec/dummy/mermaid_erd/index.html

in host machine:

bundle install
bundle exec rake build
bundle exec rake release