File tree Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Original file line number Diff line number Diff line change
1
+ changelog :
2
+ categories :
3
+ - title : Enhancements
4
+ labels :
5
+ - ' enhancement'
6
+
7
+ - title : Bug Fixes
8
+ labels :
9
+ - ' bug'
10
+
11
+ - title : Chores
12
+ labels :
13
+ - ' *'
14
+
15
+ exclude :
16
+ labels :
17
+ - dependencies
18
+ authors :
19
+ - dependabot
20
+
21
+ - title : Dependencies
22
+ labels :
23
+ - dependencies
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - master
5
+ tags :
6
+ - ' v*.*.*'
7
+
8
+ jobs :
9
+ build :
10
+ name : Build a package
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+
17
+ - uses : softprops/action-gh-release@v1
18
+ if : startsWith(github.ref, 'refs/tags/') # Run only when tagged like v1.0.1
19
+ with :
20
+ files : packages/${{steps.package_name.outputs.package_name}}.zip
21
+ generate_release_notes : true
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module Docx #:nodoc:
4
- VERSION = '0.7 .0'
4
+ VERSION = '0.8 .0'
5
5
end
You can’t perform that action at this time.
0 commit comments