Skip to content

Commit 9384375

Browse files
authored
Merge pull request #233 from collectiveidea/trusted-publishing
Trusted publishing
2 parents beb41d3 + 6b37e94 commit 9384375

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

.github/workflows/publish_gem.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Publish Gem
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
push:
10+
if: github.repository == 'collectiveidea/delayed_job_active_record'
11+
runs-on: ubuntu-latest
12+
environment: publishing
13+
14+
permissions:
15+
contents: write
16+
id-token: write
17+
18+
steps:
19+
# Set up
20+
- uses: actions/checkout@v4
21+
- name: Set up Ruby
22+
uses: ruby/setup-ruby@v1
23+
with:
24+
bundler-cache: true
25+
ruby-version: ruby
26+
27+
# Release
28+
- uses: rubygems/release-gem@v1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
**If you're viewing this at https://github.com/collectiveidea/delayed_job_active_record,
22
you're reading the documentation for the master branch.
33
[View documentation for the latest release
4-
(4.1.7).](https://github.com/collectiveidea/delayed_job_active_record/tree/v4.1.8)**
4+
(4.1.9.rc1).](https://github.com/collectiveidea/delayed_job_active_record/tree/v4.1.9.rc1)**
55

66
# DelayedJob ActiveRecord Backend
77

delayed_job_active_record.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "delayed_job_active_record"
5-
spec.version = "4.1.8"
5+
spec.version = "4.1.9.rc1"
66
spec.summary = "ActiveRecord backend for DelayedJob"
77
spec.description = "ActiveRecord backend for Delayed::Job, originally authored by Tobias Lütke"
88

0 commit comments

Comments
 (0)