Skip to content

Commit

Permalink
Fix release process.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesiarmes committed Sep 6, 2024
1 parent 5383dfa commit 14fc888
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ jobs:
with:
bundler-cache: true
- name: Push to rubygems
uses: rubygems/release-gem@v1
run: |
gem build
gem push configsl-*.gem
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ConfigSL [![Gem Version](https://badge.fury.io/rb/configsl.svg)](https://badge.fury.io/rb/configsl) [![Coverage Status][badge-coverage]][coverage]
# ConfigSL [![Gem Version](https://badge.fury.io/rb/configsl.svg)](https://badge.fury.io/rb/configsl) [![Coverage Status][badge-coverage]][coverage] [![Code Checks](https://github.com/jamesiarmes/configsl/actions/workflows/checks.yaml/badge.svg?branch=main)](https://github.com/jamesiarmes/configsl/actions/workflows/checks.yaml)

ConfigSL is a simple Domain-Specific Language (DSL) module for configuration.
It is designed to provide a declarative way to define configuration, with as few
Expand Down
3 changes: 0 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
# frozen_string_literal: true

require 'bundler'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

task default: %i[spec rubocop]

Bundler::GemHelper.install_tasks

RuboCop::RakeTask.new(:rubocop) do |task|
task.requires << 'rubocop'
end
Expand Down
2 changes: 1 addition & 1 deletion configsql.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = 'configsl'
s.version = '1.0.1'
s.version = '99.99.99.pre.1'
s.licenses = ['MIT']
s.summary = 'A simple DSL for declarative configuration in ruby.'
s.description = 'A simple, modular, extensible DSL for configuration.'
Expand Down

0 comments on commit 14fc888

Please sign in to comment.