Skip to content

Commit 7eb207a

Browse files
committed
fix view include
1 parent 57b251d commit 7eb207a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/gem-push.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Build + Publish
1313
runs-on: ubuntu-latest
1414
permissions:
15-
contents: read
15+
contents: write
1616
packages: write
1717

1818
steps:
@@ -50,6 +50,8 @@ jobs:
5050

5151
- name: Create Tag
5252
run: |
53+
git config user.email "o@kbn.one"
54+
git config user.name "github action"
5355
git tag $TAG_NAME
5456
git push origin $TAG_NAME
5557

lib/restful_error/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RestfulError
4-
VERSION = "1.0.3"
4+
VERSION = "1.0.4"
55
end

restful_error.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515
spec.homepage = "https://github.com/kuboon/restful_error"
1616
spec.license = "MIT"
1717

18-
spec.files = Dir["**/*.rb"]
18+
spec.files = Dir["lib/**/*.rb"] + Dir["config/locales/**/*"] + Dir["app/views/**/*"] + ["LICENSE.txt", "README.md"]
1919
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
2020
spec.require_paths = [ "lib" ]
2121

0 commit comments

Comments
 (0)