Skip to content

Commit

Permalink
Merge pull request #134 from ruby-docx/release-0.8.0
Browse files Browse the repository at this point in the history
Release 0.8.0
  • Loading branch information
satoryu committed May 20, 2023
2 parents 08b734d + 0b123af commit e7cd41f
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
changelog:
categories:
- title: Enhancements
labels:
- 'enhancement'

- title: Bug Fixes
labels:
- 'bug'

- title: Chores
labels:
- '*'

exclude:
labels:
- dependencies
authors:
- dependabot

- title: Dependencies
labels:
- dependencies
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:
branches:
- master
tags:
- 'v*.*.*'

jobs:
build:
name: Build a package

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') # Run only when tagged like v1.0.1
with:
files: packages/${{steps.package_name.outputs.package_name}}.zip
generate_release_notes: true
2 changes: 1 addition & 1 deletion lib/docx/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Docx #:nodoc:
VERSION = '0.7.0'
VERSION = '0.8.0'
end

0 comments on commit e7cd41f

Please sign in to comment.