Sha256: 22d4e5ab0ad61e5cba1abe51d9c09257c3d3fd42798956d0574384a69960c3ab
Contents?: true
Size: 586 Bytes
Versions: 3
Compression:
Stored size: 586 Bytes
Contents
#!/bin/sh echo "::group::Internal logs" set -ex # Because the BUNDLE_GEMFILE is set on the docker image, everything # runs in the context of the increment=${INCREMENT:-patch} bundle exec bump ${increment} --no-commit bundle exec ruby -e " require 'conventional_changelog' require 'bump' ConventionalChangelog::Generator.new.generate! version: \"v#{Bump::Bump.current}\" " version_file=$(bundle exec bump file --value-only) version=$(bundle exec bump current --value-only) git add CHANGELOG.md "${version_file}" git commit -m "chore(release): version ${version}" echo "::endgroup::"
Version data entries
3 entries across 3 versions & 1 rubygems