Sha256: bf6f09a33c5fe59b0acc6cbb0512129c31e147cb06c9609cfa1bf349e327f02e
Contents?: true
Size: 566 Bytes
Versions: 58
Compression:
Stored size: 566 Bytes
Contents
#!/usr/bin/env bash VERSION=$1 # Use the latest dependencies for the new gem version. bundle # Run all the rake task to ensure we're publishing a publishable gem. rake # Update the gem version. printf "# frozen_string_literal: true\n\nmodule ErpIntegration\n VERSION = '$VERSION'\nend\n" > ./lib/erp_integration/version.rb git add lib/erp_integration/version.rb git checkout -b "release_v.$VERSION" git commit -m "[RELEASE] Bump version for v$VERSION" git push origin "release_v.$VERSION" # Tag the new gem version. git tag v$VERSION git push origin v$VERSION
Version data entries
58 entries across 58 versions & 1 rubygems