Skip to content
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
7 changes: 7 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "ruby-definitions",
"image": "ghcr.io/rails/devcontainer/images/ruby:3.3.0",
Copy link
Copy Markdown

@Morriar Morriar Oct 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3.4.7 you mean? Because this project is forcing 3.3.0 in the .ruby-version file https://github.com/Shopify/ruby-definitions/blob/main/.ruby-version

We can do that in another PR.

"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
}
}
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Comment thread
rafaelfranca marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
release:
types: [published]

jobs:
release:
permissions:
contents: write
id-token: write

environment: release

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: rubygems/release-gem@v1