diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37a8e59..20c6700 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,6 +66,6 @@ jobs: curl -u $JFROG_USER:$JFROG_PASS $RUBYGEMS_HOST/api/v1/api_key.yaml > $HOME/.gem/credentials chmod 600 $HOME/.gem/credentials - name: Build gem - run: bundle exec gem build zuora.gemspec + run: bundle exec rake build zuora.gemspec - name: Publish - run: bundle exec gem push $GEMS_PATH \ No newline at end of file + run: bundle exec gem push $GEMS_PATH diff --git a/.gitignore b/.gitignore index a648af5..018cfa1 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ gemfiles/*.gemfile.lock zuora.log Gemfile.lock coverage +pkg diff --git a/Rakefile b/Rakefile index ab03a96..2bfbeb2 100644 --- a/Rakefile +++ b/Rakefile @@ -1,4 +1,5 @@ require 'bundler' +require 'bundler/gem_tasks' Bundler.setup require 'appraisal' require 'rspec/core/rake_task'