Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace changelog with Github releases #41

Merged
merged 12 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,25 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

deploy:
release-gem:
runs-on: ubuntu-latest

environment: Deploy
permissions:
id-token: write
contents: write

env:
PUBLISH_JOB: true

# Run on push to master branch
if: github.event_name == 'push' && github.ref == 'refs/heads/master'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: umbrellio/publish-ruby-gem-action@v1.0.4
- uses: ruby/setup-ruby@v1
with:
api-key: ${{ secrets.RUBYGEMS_API_KEY }}
env:
PUBLISH_JOB: true
ruby-version: ruby
bundler-cache: true

- uses: rubygems/release-gem@v1
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@

log
*.gemspec
Gemfile.lock
43 changes: 0 additions & 43 deletions CHANGELOG.md

This file was deleted.

20 changes: 10 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ source "https://rubygems.org"

gemspec

gem "async", "1.31.0" # TODO: Remove version binding after Ruby 2.7 and 3.0 support drop.
gem "money"
gem "pg"
gem "pry"
gem "rake"
gem "rspec"
gem "rubocop-config-umbrellio"
gem "simplecov"
gem "simplecov-lcov"
gem "symbiont-ruby"
gem "async", "~> 1.31.0"
gem "money", "~> 6.19.0"
gem "pg", "~> 1.5.7"
gem "pry", "~> 0.14.2"
gem "rake", "~> 13.2.1"
gem "rspec", "~> 3.13.0"
gem "rubocop-config-umbrellio", "~> 1.63.0.93"
gem "simplecov", "~> 0.22.0"
gem "simplecov-lcov", "~> 0.8.0"
gem "symbiont-ruby", "~> 0.7.0"
153 changes: 0 additions & 153 deletions Gemfile.lock

This file was deleted.

Loading