-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabled trusted publisher for rubygems.org
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Publish gem to rubygems.org | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
push: | ||
if: github.repository == 'ruby/date' | ||
runs-on: ubuntu-latest | ||
|
||
environment: | ||
name: rubygems.org | ||
url: https://rubygems.org/gems/date | ||
|
||
permissions: | ||
contents: write | ||
id-token: write | ||
|
||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | ||
with: | ||
egress-policy: audit | ||
|
||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.0 | ||
with: | ||
bundler-cache: true | ||
ruby-version: ruby | ||
|
||
- name: Publish to RubyGems | ||
uses: rubygems/release-gem@612653d273a73bdae1df8453e090060bb4db5f31 # v1 | ||
|
||
- name: Create GitHub release | ||
run: | | ||
tag_name="$(git describe --tags --abbrev=0)" | ||
gh release create "${tag_name}" --verify-tag --generate-notes | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.MATZBOT_GITHUB_WORKFLOW_TOKEN }} |
0fef438
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you accept a PR to add in the empty java/JRuby gem publishing? (either as separate steps prior to GH release, or as workflow with multiple parallel jobs and then GH release at the end)
0fef438
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly. I pushed date-3.4.0-java gem now because I forgot to release -java version in that time.