From f25625decbe0cdffd9350e98383318ba26d58318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Thu, 30 May 2024 05:25:39 +0000 Subject: [PATCH] Prepare for ruby 1.1.0 image release --- .github/workflows/publish-new-image-version.yaml | 11 +++++++++++ .github/workflows/publish-new-ruby-versions.yml | 2 +- CONTRIBUTING.md | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-new-image-version.yaml b/.github/workflows/publish-new-image-version.yaml index 057f64b..a8e0199 100644 --- a/.github/workflows/publish-new-image-version.yaml +++ b/.github/workflows/publish-new-image-version.yaml @@ -12,9 +12,20 @@ jobs: fail-fast: false matrix: RUBY_VERSION: + - 3.3.2 - 3.3.1 + - 3.3.0 - 3.2.4 + - 3.2.3 + - 3.2.1 + - 3.2.0 + - 3.1.6 - 3.1.5 + - 3.1.4 + - 3.1.3 + - 3.1.2 + - 3.1.1 + - 3.1.0 runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/publish-new-ruby-versions.yml b/.github/workflows/publish-new-ruby-versions.yml index 6bfd1a9..6ccf4f4 100644 --- a/.github/workflows/publish-new-ruby-versions.yml +++ b/.github/workflows/publish-new-ruby-versions.yml @@ -10,7 +10,7 @@ on: image_versions: type: string required: true - description: List of image versions to build. Should be an array ["ruby-0.3.0"] + description: List of image versions to build. Should be an array ["ruby-1.1.0"] jobs: build: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8b44cc..60668bb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,5 +49,5 @@ as comma separated arrays. For example: ``` ruby_versions: ["3.3.1","3.2.4","3.1.5"] -image_versions: ["ruby-0.3.0"] +image_versions: ["ruby-1.1.0"] ```