Skip to content

Commit bbd745b

Browse files
authored
Replace changelog with Github releases (#41)
1 parent 460a6f7 commit bbd745b

File tree

5 files changed

+24
-213
lines changed

5 files changed

+24
-213
lines changed

.github/workflows/ci.yml

+13-7
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,25 @@ jobs:
4949
with:
5050
github-token: ${{ secrets.GITHUB_TOKEN }}
5151

52-
deploy:
52+
release-gem:
5353
runs-on: ubuntu-latest
5454

55-
environment: Deploy
55+
permissions:
56+
id-token: write
57+
contents: write
58+
59+
env:
60+
PUBLISH_JOB: true
5661

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

6065
steps:
61-
- uses: actions/checkout@v3
66+
- uses: actions/checkout@v4
6267

63-
- uses: umbrellio/publish-ruby-gem-action@v1.0.4
68+
- uses: ruby/setup-ruby@v1
6469
with:
65-
api-key: ${{ secrets.RUBYGEMS_API_KEY }}
66-
env:
67-
PUBLISH_JOB: true
70+
ruby-version: ruby
71+
bundler-cache: true
72+
73+
- uses: rubygems/release-gem@v1

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212

1313
log
1414
*.gemspec
15+
Gemfile.lock

CHANGELOG.md

-43
This file was deleted.

Gemfile

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ source "https://rubygems.org"
44

55
gemspec
66

7-
gem "async", "1.31.0" # TODO: Remove version binding after Ruby 2.7 and 3.0 support drop.
8-
gem "money"
9-
gem "pg"
10-
gem "pry"
11-
gem "rake"
12-
gem "rspec"
13-
gem "rubocop-config-umbrellio"
14-
gem "simplecov"
15-
gem "simplecov-lcov"
16-
gem "symbiont-ruby"
7+
gem "async", "~> 1.31.0"
8+
gem "money", "~> 6.19.0"
9+
gem "pg", "~> 1.5.7"
10+
gem "pry", "~> 0.14.2"
11+
gem "rake", "~> 13.2.1"
12+
gem "rspec", "~> 3.13.0"
13+
gem "rubocop-config-umbrellio", "~> 1.63.0.93"
14+
gem "simplecov", "~> 0.22.0"
15+
gem "simplecov-lcov", "~> 0.8.0"
16+
gem "symbiont-ruby", "~> 0.7.0"

Gemfile.lock

-153
This file was deleted.

0 commit comments

Comments
 (0)