Skip to content

Commit 24b363b

Browse files
authored
Merge pull request #36 from mxenabled/mc/readme_tag_release
Update README and tag/release workflows
2 parents 0710629 + e443967 commit 24b363b

7 files changed

Lines changed: 29 additions & 38 deletions

File tree

.github/workflows/auto_tag.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [master]
66

77
jobs:
8-
build:
8+
Tag:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
@@ -14,6 +14,5 @@ jobs:
1414
GITHUB_TOKEN: "${{ secrets.TAG_AND_RELEASE_TOKEN }}"
1515
commit_message_template: "({{number}} {{message}})"
1616
tag_prefix: "v"
17-
strategy: regex
18-
root: "/lib/mx-platform-ruby/version.rb"
19-
regex_pattern: "[0-9\\.]+"
17+
root: $GITHUB_WORKSPACE/lib/mx-platform-ruby/version.rb
18+
regex_pattern: "VERSION = '[0-9\\.]+'"

.github/workflows/github_release.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/tag_release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Tag Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
Release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: "Create Release"
13+
uses: "marvinpinto/action-automatic-releases@latest"
14+
with:
15+
repo_token: "${{ secrets.TAG_AND_RELEASE_TOKEN }}"
16+
prerelease: false

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
*This project is currently in **Beta**. Please open up an issue [here](https://github.com/mxenabled/mx-platform-ruby/issues) to report issues using the MX Platform API Ruby Library.*
22

3-
# mx-platform-ruby
3+
*This project was automatically generated by the [OpenAPI Generator](https://openapi-generator.tech).*
44

5-
MxPlatformRuby - the Ruby gem for the MX Platform API
5+
# MX Platform Ruby - v0.6.1
66

7-
The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
8-
9-
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
7+
The Ruby gem for the MX Platform API.
108

11-
- Package version: 0.6.0
9+
The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
1210

1311
## Installation
1412

lib/mx-platform-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module MxPlatformRuby
14-
VERSION = '0.6.0'
14+
VERSION = '0.6.1'
1515
end

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ gemHomepage: "https://github.com/mxenabled/mx-platform-ruby"
66
gemLicense: "MIT"
77
gemName: "mx-platform-ruby"
88
gemRequiredRubyVersion: ">= 2.6"
9-
gemVersion: "0.6.0"
9+
gemVersion: "0.6.1"
1010
library: "faraday"
1111
moduleName: "MxPlatformRuby"

openapi/templates/README.mustache

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
*This project is currently in **Beta**. Please open up an issue [here](https://github.com/mxenabled/mx-platform-ruby/issues) to report issues using the MX Platform API Ruby Library.*
22

3-
# {{gemName}}
3+
*This project was automatically generated by the [OpenAPI Generator](https://openapi-generator.tech).*
44

5-
{{moduleName}} - the Ruby gem for the {{appName}}
5+
# MX Platform Ruby - v{{gemVersion}}
6+
7+
The Ruby gem for the {{appName}}.
68

79
{{#appDescriptionWithNewLines}}
810
{{{.}}}
911
{{/appDescriptionWithNewLines}}
1012

11-
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
12-
13-
- Package version: {{gemVersion}}
14-
1513
## Installation
1614

1715
Add this line to your application's Gemfile:

0 commit comments

Comments
 (0)