Skip to content

Commit

Permalink
config publish actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarrero committed Aug 1, 2023
1 parent 327ee51 commit b1b45e7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
name: CI

on:
workflow_dispatch: {}
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
name: Build
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/PUBLISH.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Publish gems to Rubygems
run: gem push gems/*.gem
- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push *.gem
env:
GEM_HOST_API_KEY: ${{secrets.GEM_HOST_API_KEY}}
GEM_HOST_API_KEY: "${{secrets.GEM_HOST_API_KEY}}"
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [6.0.0](https://github.com/conekta/conekta-ruby/releases/tag/6.0.0) - 2023-08-01
## What's Changed
* Fix i18n dependency load error by @juanolivas in https://github.com/conekta/conekta-ruby/pull/108
* Removing ConektaList.total logic in favor of has_more by @leofischer in https://github.com/conekta/conekta-ruby/pull/105
* Update README by @fernandosaenzconekta in https://github.com/conekta/conekta-ruby/pull/109
* Readme changes by @fernandosaenzconekta in https://github.com/conekta/conekta-ruby/pull/110
* Fix Specs by @nicocedron in https://github.com/conekta/conekta-ruby/pull/111
* openapi by @fcarrero in https://github.com/conekta/conekta-ruby/pull/114
## [2.6.0](https://github.com/conekta/conekta-ruby/releases/tag/2.5.0) - 2020-06-08
### Deprecate List Total attribute
- Remove total attribute logic for lists as it is deprecated and will be removed.
Expand Down

0 comments on commit b1b45e7

Please sign in to comment.