Skip to content

Commit

Permalink
Merge pull request #36 from mxenabled/mc/readme_tag_release
Browse files Browse the repository at this point in the history
Update README and tag/release workflows
  • Loading branch information
mcoats13 authored Oct 29, 2021
2 parents 0710629 + e443967 commit 24b363b
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 38 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/auto_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [master]

jobs:
build:
Tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -14,6 +14,5 @@ jobs:
GITHUB_TOKEN: "${{ secrets.TAG_AND_RELEASE_TOKEN }}"
commit_message_template: "({{number}} {{message}})"
tag_prefix: "v"
strategy: regex
root: "/lib/mx-platform-ruby/version.rb"
regex_pattern: "[0-9\\.]+"
root: $GITHUB_WORKSPACE/lib/mx-platform-ruby/version.rb
regex_pattern: "VERSION = '[0-9\\.]+'"
20 changes: 0 additions & 20 deletions .github/workflows/github_release.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tag Release

on:
push:
tags:
- "v*"

jobs:
Release:
runs-on: ubuntu-latest
steps:
- name: "Create Release"
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.TAG_AND_RELEASE_TOKEN }}"
prerelease: false
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
*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.*

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

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

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.

This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
The Ruby gem for the MX Platform API.

- Package version: 0.6.0
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.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion lib/mx-platform-ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module MxPlatformRuby
VERSION = '0.6.0'
VERSION = '0.6.1'
end
2 changes: 1 addition & 1 deletion openapi/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ gemHomepage: "https://github.com/mxenabled/mx-platform-ruby"
gemLicense: "MIT"
gemName: "mx-platform-ruby"
gemRequiredRubyVersion: ">= 2.6"
gemVersion: "0.6.0"
gemVersion: "0.6.1"
library: "faraday"
moduleName: "MxPlatformRuby"
10 changes: 4 additions & 6 deletions openapi/templates/README.mustache
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
*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.*

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

{{moduleName}} - the Ruby gem for the {{appName}}
# MX Platform Ruby - v{{gemVersion}}

The Ruby gem for the {{appName}}.

{{#appDescriptionWithNewLines}}
{{{.}}}
{{/appDescriptionWithNewLines}}

This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- Package version: {{gemVersion}}

## Installation

Add this line to your application's Gemfile:
Expand Down

0 comments on commit 24b363b

Please sign in to comment.